我正在使用此代码:
<?php
query_posts( 'posts_per_page=5' );
while ( have_posts() ) : the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;
wp_reset_query();
?>
代码有效,但有2个帖子,它只返回最新的帖子。
我需要它来展示所有。
有人可以帮忙吗?
由于
答案 0 :(得分:3)
试试这个:
$query = new WP_Query('posts_per_page=5');
while( $query ->have_posts() ) : $query ->the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;
wp_reset_postdata();