如何修改WordPress首页文章摘要字数

在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 条评论。

发表评论

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据