带分页的 Wordpress 类别过滤器

Wordpress category filter with pagination

是否有按 post 类别分页过滤的解决方案。目前,它只过滤当前页面中的 post 个,但不再过滤。你可以在这里看到:The Method Case

谢谢!

您可以使用 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;

?>