wordpress调取最新文章列表

有时候我们需要在网站首页调取最新的文章列表,下面这段简单的代码可以帮我们实现。

<?php query_posts('showposts=5'); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
</ul>

#showposts的值是需要调取文章的数量,示例中为5篇。

上一篇
下一篇