wordpress中如何让首页的文章只显示摘要?
展开全部
到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…)'));
} ?>
保存,就显示摘要了。
<?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…)'));
} ?>
保存,就显示摘要了。
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
展开全部
1.如果是自己使用的话就用more标签,写文章时加入
2.也可以修改一下主题的
打开你使用的theme中的index.php,查找
<?php the_content(__('(more...)')); ?>
或
<?php the_content(); ?>
修改为
<?php if(!is_single()) {
the_excerpt();
} else {
the_content(__('(more...)'));
} ?>
2.也可以修改一下主题的
打开你使用的theme中的index.php,查找
<?php the_content(__('(more...)')); ?>
或
<?php the_content(); ?>
修改为
<?php if(!is_single()) {
the_excerpt();
} else {
the_content(__('(more...)'));
} ?>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以使用摘要插件,也可以在编辑文章的时候添加<!-more->标签。使用插件请参考资料
参考资料: http://www.boke8.net/wordpress-wp-utf8-excerpt-plugin.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你可以在编辑后台中的摘要文本框中输入文章的概要就能自动显示在首页了,要么就是选择插件,总动截取文章的前部分作为摘要。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以安装文章截断插件。也可以修改吗主题(excerpt),前提是你在撰写文章时在摘要框中输入了摘要。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询