Я думаю, что-то не так с моим циклом, или мой код не работает.Я хотел бы показать все сообщения из определенной категории.Что бы я ни делал, я вижу только 1 сообщение.
<ol>
<?php
$args = array(
'category_name'=>'test-category',
'posts_per_page' => 15,
'nopaging' => true
);
$query = new WP_Query( $args );
while ( $query->have_posts() ) : $query->the_post();
//Post data
echo get_the_post_thumbnail(get_the_ID());
endwhile;
?>
<li data-href="<?php $trink = get_the_permalink(); echo preg_replace("#/$#im", '', $trink);?>">
<div>
<a class="button" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</div>
</li>
</ol>
Что я здесь не так делаю?