add_section( 'blog_point_archive_page_options', array( 'title' => esc_html__( 'Blog / Archive Pages Options', 'blog-point' ), 'panel' => 'blog_point_theme_options_panel', ) ); // Excerpt - Excerpt Length. $wp_customize->add_setting( 'blog_point_excerpt_length', array( 'default' => 35, 'sanitize_callback' => 'blog_point_sanitize_number_range', ) ); $wp_customize->add_control( 'blog_point_excerpt_length', array( 'label' => esc_html__( 'Excerpt Length (no. of words)', 'blog-point' ), 'section' => 'blog_point_archive_page_options', 'settings' => 'blog_point_excerpt_length', 'type' => 'number', 'input_attrs' => array( 'min' => 5, 'max' => 200, 'step' => 1, ), ) );