【发布时间】:2015-04-17 01:59:22
【问题描述】:
是否有任何解决方案可以通过分页来按帖子类别进行过滤。目前,它只过滤当前页面中的帖子,但不再过滤。你可以在这里看到:The Method Case
谢谢!
【问题讨论】:
标签: php wordpress filter categories
是否有任何解决方案可以通过分页来按帖子类别进行过滤。目前,它只过滤当前页面中的帖子,但不再过滤。你可以在这里看到:The Method Case
谢谢!
【问题讨论】:
标签: php wordpress filter categories
您可以为此目的使用WP_Query。例如:
<?php
$posts = WP_Query(array(
'category_name' => 'my-category',
'paged' => 2 // Page 2
));
while($posts->have_posts()): $posts->the_post();
// do some stuff
endwhile;
?>
【讨论】: