我需要回复帖子的类别链接,所以这是我的查询:
<?php
$args=array(
'cat' => 3,
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 3,
'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
....SOME HTML....
<?php
endwhile;
}
wp_reset_query();
?>
在底部我需要按钮“显示所有帖子”,它应该重定向到子类别的帖子列表。
答案 0 :(得分:0)
只需使用Wordpress的功能the_category
。第二个参数single
确保仅显示子类别。您可以在documentation中找到有关它的更多详细信息
如果你在while循环中使用下面的代码,它应该可以工作。
<?php
$postID = get_the_ID();
the_category(', ', 'single', $postID);
?>
我希望这会有所帮助。