默认长度是40,取值范围是20到40,显然是不够用的。
需要我们手动修改代码,具体如下:
wordpress安装目录/wp-content/themes/gucherry-blog/inc/customizer/functions/customizer-fields.php
$wp_customize->add_control( 'gucherry_blog_excerpt_length', array(
'label' => esc_html__( 'Excerpt Length', 'gucherry-blog' ),
'description' => esc_html__( 'Maximum excerpt length 40 and minimum excerpt length 20 can be set.', 'gucherry-blog' ),
'section' => 'gucherry_blog_excerpt_length_section',
'type' => 'number',
'input_attrs' => array(
'min' => 20,
'max' => 40,
),
) );
手动修改其中的max
值,就可增大取值范围了