需要为wordpress循环自定义分页

时间:2015-03-21 06:06:43

标签: php wordpress plugins pagination

我使用以下代码,显示特定类别的所有帖子

    <?php
   $random_post = new WP_query(); 
  $random_post->query('cat='2'); 
  while ($random_post->have_posts()) : $random_post->the_post(); 
  the_title(); 
  endwhile;
  wp_reset_postdata();

?>

它工作正常,但我需要一个自定义分页,我只想在一个页面中只显示5个帖子。如果您有任何想法请尽快告诉我。

0 个答案:

没有答案