add_section( 'section_home_latest_posts', array( 'title' => __( 'Latest Posts Section', 'blogbee' ), 'priority' => 130, 'capability' => 'edit_theme_options', 'panel' => 'home_page_panel', ) ); // Latest Posts title $wp_customize->add_setting('theme_options[latest_posts_title]', array( 'default' => $default['latest_posts_title'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control('theme_options[latest_posts_title]', array( 'label' => __('Section Title', 'blogbee'), 'section' => 'section_home_latest_posts', 'settings' => 'theme_options[latest_posts_title]', 'type' => 'text' ) );