add_section( 'section_home_layout', array( 'title' => __( 'Homepage Layout', 'akisa' ), 'priority' => 1, 'capability' => 'edit_theme_options', 'panel' => 'home_page_panel', ) ); // Add arrow enable setting and control. $wp_customize->add_setting( 'theme_options[homepage_layout_options]', array( 'default' => $default['homepage_layout_options'], 'sanitize_callback' => 'akisa_sanitize_select', ) ); $wp_customize->add_control( 'theme_options[homepage_layout_options]', array( 'label' => esc_html__( 'Choose HomePage Layout', 'akisa' ), 'section' => 'section_home_layout', 'type' => 'radio', 'choices' => array( 'lite-layout' => esc_html__( 'Lite HomePage', 'akisa' ), 'dark-layout-pro' => esc_html__( 'Dark HomePage(Pro)', 'akisa' ), 'third-layout-pro' => esc_html__( 'Third HomePage(Coming Soon on Pro Version )', 'akisa' ), ) ) );