Posts tagged ‘mb_strimwidth’

Warning: mb_strimwidth() [function.mb-strimwidth]

Warning: mb_strimwidth() [function.mb-strimwidth]: Start position is out of range in ../header.php

后来在作者的网站上找到了解决方案
打开header.php 第14行找到
mb_strimwidth(strip_tags(apply_filters(‘the_content’,$post->post_content)),6,220);
替换为substr(strip_tags($post->post_content),0,220);
就不提示这个信息了。