add_section( 'architect_contractor_noting_found_page_settings', array( 'title' => esc_html__( 'Noting Found Page Settings', 'architect-contractor' ), 'priority' => 200, 'capability' => 'edit_theme_options', 'panel' => 'architect_contractor_theme_addons_panel', ) ); $wp_customize->add_setting( 'architect_contractor_noting_found_main_title', array( 'default' => 'Nothing Found', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'architect_contractor_noting_found_main_title', array( 'label' => esc_html__( 'Main Title', 'architect-contractor' ), 'section' => 'architect_contractor_noting_found_page_settings', 'type' => 'text', ) ); $wp_customize->add_setting( 'architect_contractor_noting_found_para', array( 'default' => 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'architect_contractor_noting_found_para', array( 'label' => esc_html__( 'Para Text', 'architect-contractor' ), 'section' => 'architect_contractor_noting_found_page_settings', 'type' => 'text', ) ); $wp_customize->add_setting('architect_contractor_noting_found_saerch', array( 'default' => 1, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'architect_contractor_sanitize_checkbox', ) ); $wp_customize->add_control('architect_contractor_noting_found_saerch', array( 'label' => esc_html__('Enable/Disable Search', 'architect-contractor'), 'section' => 'architect_contractor_noting_found_page_settings', 'type' => 'checkbox', ) );