WordPress自定义摘要字数 04/14, 2020 作者 东方皓 function custom_excerpt_length($length) { return 80; } add_filter('excerpt_length', 'custom_excerpt_length');