在Wordpress中可以打开主题中的funtions.php,加入下面的代码:
function custom_excerpt_length( $length ) { return 200; // 200为字数,可以修改为自己的值。 } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
参考资料:
如何更改WordPress首页文章摘要字数:http://www.tuicool.com/articles/3ymaQr
0 条评论。