显示最新文章全文,其余部分摘录

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.
  1. <?php if (have_posts()) : ?>
  2. <?php $count = 0; ?>
  3. <?php while (have_posts()) : the_post(); ?>
  4. <?php $count++; ?>
  5. <?php if ($count < 2) : ?>
  6. <?php the_content() ?>
  7. <?php else : ?>
  8. <?php the_excerpt(); ?>
  9. <?php endif; ?>
  10. <?php endwhile; ?>
  11. <?php endif; ?>

以上是关于显示最新文章全文,其余部分摘录的主要内容,如果未能解决你的问题,请参考以下文章

GNOME 系统设置

Es全文检索

FBO 的延迟着色器纹理显示为黑色

[moka摘录]查看邮件是否已被阅读

使用 Querybuilder 从全文搜索父路径中排除子路径或从 XPATH/JCR SQL2 查询中获取搜索命中摘录

PHP 完整显示最新帖子,摘录后休息