【发布时间】:2009-10-17 15:50:27
【问题描述】:
我想在 wordpress 页面中显示最后 5 个帖子,但是当我使用此代码时,它将返回整个帖子正文,而我的帖子中有 <!--more-->,我想显示到这一部分。
这是我正在使用的代码:
<div>
<ul>
<? query_posts('showposts=5'); ?>
<?php while (have_posts()): the_post(); ?>
<li>
<a href="<?php the_permalink() ?>"><?php the_contenet(); ?></a>
</li>
<?php endwhile; ?>
</ul>
</div>
【问题讨论】: