Posts Tagged: 分类文章


1
Mar 10

wordpress标题截取字符方法

今天想用wordpresss调用某分类下的十篇文章,但是调用出来的文章标题长度如果多就会换行,如果用CSS来控制的话,可以用overflow:hidden来控制,但我又想在标题后面出现省略号,于是找到下面的方法实现。
加入在functions.php里面:

<?php

function TruncateTitle($max_length) {

$title_str = get_the_title();

if (mb_strlen($title_str,’utf-8′) > $max_length ) {

$title_str = mb_substr($title_str,0,$max_length,’utf-8′).’…’;

}

return $title_str;

}

?>

调用方法:
Continue reading →


无觅相关文章插件,快速提升流量