修改WordPress中the_excerpt()函数截取中文的长度

方法一:修改wordpress文件,直接把函数的输出长度改为需要的长度。

这个方法改起来很简单,找到wp-includes下的formatting.php文件,查找function wp_trim_excerpt($text)函数,找到excerpt_length,把相对应的55修改成自己喜欢的数值即可。

这个方法的优点是修改简单,但是缺点也很明显,侵入了wordpress的文件,一旦博客升级这个方法就会失效。

方法二:在主题 functions.php 文件加入:

1
2
3
4
function custom_excerpt_length( $length ) {  
return 200;
}
add_filter( ‘excerpt_length’, ‘custom_excerpt_length’, 999 );

修改WordPress中the_excerpt()函数截取中文的长度

https://ldsun.com/2015/01/26/修改WordPress中the-excerpt-函数截取中文的长度/

Author

Ludis

Posted on

2015-01-26

Updated on

2015-01-26

Licensed under

Comments