add_section( 'bizzboss_general_section' , array( 'title' => __( 'General Settings', 'bizzboss' ), 'priority' => 30, 'capability' => 'edit_theme_options', ) ); $wp_customize->add_setting( 'bizzboss_blogpage_title', array( 'default' => __('Recent Article','bizzboss'), 'sanitize_callback' => 'sanitize_text_field', 'capability' => 'edit_theme_options', ) ); $wp_customize->add_control( 'bizzboss_blogpage_title', array( 'label' => __('Blog Page Title','bizzboss'), 'section' => 'bizzboss_general_section', 'type' => 'text', ) ); $wp_customize->add_setting( 'bizzboss_blogpage_title_small', array( 'default' => __('Our Blog','bizzboss'), 'sanitize_callback' => 'sanitize_text_field', 'capability' => 'edit_theme_options', ) ); $wp_customize->add_control( 'bizzboss_blogpage_title_small', array( 'label' => __('Blog Page Second Title','bizzboss'), 'section' => 'bizzboss_general_section', 'type' => 'text', ) ); } add_action( 'customize_register', 'bizzboss_theme_customizer' ); ?>