add_control( new Ast_Control_Divider( $wp_customize, AST_THEME_SETTINGS . '[divider-section-header-single-title]', array( 'type' => 'ast-divider', 'section' => 'section-single-typo', 'priority' => 5, 'label' => __( 'Single Post / Page Title', 'astra' ), 'settings' => array(), ) ) ); /** * Option: Single Post / Page Title Font Size */ $wp_customize->add_setting( AST_THEME_SETTINGS . '[font-size-entry-title]', array( 'default' => $defaults['font-size-entry-title'], 'type' => 'option', 'transport' => 'postMessage', 'sanitize_callback' => array( 'AST_Customizer_Sanitizes', 'sanitize_responsive_typo' ), ) ); $wp_customize->add_control( new Ast_Control_Responsive( $wp_customize, AST_THEME_SETTINGS . '[font-size-entry-title]', array( 'type' => 'ast-responsive', 'section' => 'section-single-typo', 'priority' => 10, 'label' => __( 'Font Size', 'astra' ), 'input_attrs' => array( 'min' => 0, ), 'units' => array( 'px' => 'px', 'em' => 'em', ), ) ) );