要显示最新帖子的摘录,可以使用query\\u posts。
Example Query Posts Showing the Latest Post with the Featured Image:
<?php query_posts(\'showposts=1\'); ?>
<?php while (have_posts()) : the_post(); ?>
<h3 class="home link"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_post_thumbnail(); ?>
<?php the_excerpt(); ?>
<?php endwhile; ?>
如果要显示输入主页帖子编辑器的内容,则需要重置查询。
<?php wp_reset_query(); ?>