显示最新文章全文,其余部分摘录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示最新文章全文,其余部分摘录相关的知识,希望对你有一定的参考价值。
To solve an issue for a blog main page in wordpress to display the latest post in its entirety and the remaining posts only the excerpt.
<?php $count = 0; ?> <?php while (have_posts()) : the_post(); ?> <?php $count++; ?> <?php if ($count < 2) : ?> <?php the_content() ?> <?php else : ?> <?php the_excerpt(); ?> <?php endif; ?> <?php endwhile; ?> <?php endif; ?>
以上是关于显示最新文章全文,其余部分摘录的主要内容,如果未能解决你的问题,请参考以下文章