首先将此函数添加到函数中。php文件
function max_title_length($title){
$max = 20;
return substr( $title, 0, $max ). " …";
}
然后在链接的代码循环之前添加此行以钩住上述函数:
add_filter( \'the_title\', \'max_title_length\');
循环后,移除此过滤器:
remove_filter( \'the_title\', \'max_title_length\');
只要改变一下
$max = 20;
去你想要的任何地方。