我正在编写一个代码来显示不同类别的最近帖子。单击category 1,我想显示cat1最近的帖子,单击cat2,显示cat2最近的帖子,依此类推。
我写的代码在上显示了相同的帖子all 猫。
我该怎么办?
<?php
$rPosts = new WP_Query();
$rPosts->query(\'showposts=4&category_name=category1\');
while ($rPosts->have_posts()) : $rPosts->the_post(); ?>
<h4><a href="#">POSTS FROM THIS CAT</a></h4>
<p><?php the_post_thumbnail(array(300,221)); ?> </p>
<h3><a href="#"><?php echo get_the_title();?></a></h3>
<p><a class="btn btn-white" href="<?php the_permalink(); ?>">Read Full Story</a></p>
<?php
endwhile;
?>