随身笔记
随身笔记

wordpress中如何让首页的文章只显示摘要?

1.如果是自己使用的话就用more标签,写文章时加入
2.也可以修改一下主题的
打开你使用的theme中的index.php,查找
[code]<?php the_content(__(‘(more…)’)); ?>[/code]

[code]<?php the_content(); ?>[/code]
修改为
[code]<?php if(!is_single()) {
the_excerpt();
} else {
the_content(__(‘(more…)’));
} ?>[/code]

没有标签
首页      前端资源      wordpress教程      wordpress中如何让首页的文章只显示摘要?

随身笔记

wordpress中如何让首页的文章只显示摘要?
1.如果是自己使用的话就用more标签,写文章时加入 2.也可以修改一下主题的 打开你使用的theme中的index.php,查找 [code]<?php the_content(__('(more...)')); ?>[/code] 或 […
扫描二维码继续阅读
2013-11-29