我使用以下代码,显示特定类别的所有帖子
<?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个帖子。如果您有任何想法请尽快告诉我。