wordpress首页文章只显示标题及摘要方法(inoves主题)
首先找到首页文件,wp-content/themes/inove/index.php
打开他,找到
<div class="content">
//具体不用管
</div>
然后直接替换成以下内容
<div class="content">
<?php echo mb_strimwidth(strip_tags(apply_filters(‘the_content’, $post->post_content)), 0, 200,”···”); ?> </div>
这样就OK了!
活的有意义