用了水煮鱼大咖的WPJAM Basic后,囧客圈的摘要部分就出了问题,提示get_the_excerpt这里有错误
代码详见:
<?php echo mb_strimwidth(get_the_excerpt(),0,280,'...'); ?>
于是改为:
<?php echo mb_strimwidth(strip_tags($post->post_content),0,200,'...<strong>[阅读全文]</strong>'); ?>
做个记录,后面改起来就方便啦。
2014-03-19 2,825 0
用了水煮鱼大咖的WPJAM Basic后,囧客圈的摘要部分就出了问题,提示get_the_excerpt这里有错误
代码详见:
<?php echo mb_strimwidth(get_the_excerpt(),0,280,'...'); ?>
于是改为:
<?php echo mb_strimwidth(strip_tags($post->post_content),0,200,'...<strong>[阅读全文]</strong>'); ?>
做个记录,后面改起来就方便啦。