wordpress自定义摘要截取字数的代码_WordPress教程-查字典教程网
wordpress自定义摘要截取字数的代码
wordpress自定义摘要截取字数的代码
发布时间:2016-12-23 来源:查字典编辑
摘要:functionexcerpt($limit){$excerpt=explode('',get_the_excerpt(),$limit);...

function excerpt($limit) {

$excerpt = explode(' ', get_the_excerpt(), $limit);

if (count($excerpt)>=$limit) {

array_pop($excerpt);

$excerpt = implode(" ",$excerpt).'...';

} else {

$excerpt = implode(" ",$excerpt);

}

$excerpt = preg_replace('`[[^]]*]`','',$excerpt);

return $excerpt;

}

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新WordPress学习
    热门WordPress学习
    CMS教程子分类