将此粘贴到页面模板中。它将输出所有帖子的列表(不分页)。
<?php
// the query
$all_posts = new WP_Query( array( \'post_type\' => \'post\', \'post_status\' => \'publish\', \'posts_per_page\' => -1 ) );
if ( $all_posts->have_posts() ) :
?>
<ul>
<?php while ( $all_posts->have_posts() ) : $all_posts->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php else : ?>
<p><?php _e( \'Sorry, no posts were found.\' ); ?></p>
<?php endif; ?>
<?php wp_reset_postdata(); ?>