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了!
posted @ 2013-04-27 08:47  SOUTHER  阅读(1376)  评论(0编辑  收藏  举报