将摘录长度限制为 50 个字

将以下代码放在 functions.php 中

function themify_custom_excerpt_length( $length ) {
   return 50;
}
add_filter( 'excerpt_length', 'themify_custom_excerpt_length', 999 );

使用 999 作为优先级,以确保该函数在默认的 WordPress 过滤器之后运行,否则它将覆盖此处设置的内容。