如何在WordPress的Tag里把文章内容excerpt标签改成content标签

现在的wordpress的theme基本都把tag里的文章内容做成单纯的文字格式,图片之类的都自动排除了,文字的字数也缩短了(用了excerpt标签的结果).excerpt英文意思就是摘录意思.

如何在Wordpress的Tag里把文章内容excerpt标签改成content标签.使tag里的各个文章内容用原来的格式(其实就是在Tag里去掉excerpt标签,把excerpt标签改成content标签).

1.首先看下theme的选项里有没excerpt改成full content的选项 有的话设置改下就行了.

2.没有的话打开theme里的editor选项.Ctrl+F 输入excerpt

3.content.php,tag.php,archieve.php在三个文件里寻找带excerpt的字段.有的话把整个excerpt字段替换成<?php the_content(); ?>,点update file.

例:excerpt字段基本都是<?php the_excerpt(); ?>,也有<?php get_template_part( ‘content’, ‘excerpt’ ); ?>这样格式.

4.Main Index Template(index.php)这个文件里修改带有excerpt字段替换成<?php the_content(); ?>是改首页.