首先找到首页文件,wp-content/themes/inove/index.php
打开他,找到
<div class="content">
部分,找的话能够找到两处,此处只找第二处即可,我的找到的内容如下:
<div class="content"> <?php the_content(__('Read more...', 'inove')); ?> <div class="fixed"></div> </div>
将div标签中的内容替换成
<?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 200,"···");?>
即可。
注意:上述方法只会改变首页的文章显示方式,点击每个分类目录时仍会显示文章的全部内容。要使分类目录也只显示摘要,需要修改archive.php文件,修改方法和修改上面index.php一样(该文件只搜到一处,直接替换掉即可)。
参考文章:http://www.cnblogs.com/souther/articles/3046242.html