首页 热点专区 义务教育 高等教育 出国留学 考研考公

wordpress首页显示文章的全部内容怎么办

发布网友 发布时间:2022-04-25 12:25

我来回答

1个回答

热心网友 时间:2024-07-12 15:27

首先,到wordpress后台,依次选择 外观-->编辑-->选择右边的index.php文件,在里面可以看到语句
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
其次可以看出,index.php是嵌套一个 content.php 的文件用于专门显示文章的内容,这就是为什么在首页老是显示文章全文。那么,打开content.php文件找到
<?php
the_content( __( 'Continue reading <span>→</span>', 'twentyeleven' ) );
?>
将它修改为
<?php if(!is_single()) {
the_excerpt();
} else {
the_content(__('(more…)'));
} ?>
最后,保存,就显示摘要了。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com