|
发表于 2013-6-27 19:45:14
|
显示全部楼层
这个方法试试?
今天把wp捣鼓了半天,由于自己没学过php,花了很大的功夫,终于找到一个wp完美显示摘要的方法,可以显示图片和视频,拿出来和大家分享。
首先,下载wp-utf8-excerpt这个插件,地址:http://wordpress.org/extend/plugins/wp-utf8-excerpt/。接着,安装插件:将文件放在wp-content\plugins目录下,进入后台安装。
然后,找到wp-content/themes下你使用的模板目录,查找目录中的文件,如果有如果有home.php则修改home.php,没有的话就修改index.php,找到<?php the_content(); ?>将其修改为以下代码:
<?php if(is_category() || is_archive() || is_home() ) {
the_excerpt();
} else {
the_content(‘Read the rest of this entry »’);
} ?>
这里有两点要说一下,如果找不到<?php the_content(); ?>,但一定有和它类似的。另一点,一般情况index.php是首页文件,archive是分类显示的文件。
好了,大功告成了,刷新一下就可以看到摘要显示了,可以显示图片的哦。
如果要修改显示的长度,可以在wp-utf8-excerpt.php文件中找到
if (” == $home_excerpt_length) {$home_excerpt_length = 300;}
if (” == $archive_excerpt_length) {$archive_excerpt_length = 150;}
这两行语句,其中的300和150就是长度啦。
转自:http://www.wordpress.org.cn/view ... p%3Bfilter%3Ddigest
|
评分
-
查看全部评分
|