add_section( 'no_results_pg_options', array( 'title' => esc_html__( 'No Results Page', 'bridal-jewelry-store' ), 'panel' => 'bridal_jewelry_store_theme_options', ) ); // Title // $wp_customize->add_setting( 'bridal_jewelry_store_pg_no_results_ttl', array( 'default' => __('Nothing Found','bridal-jewelry-store'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bridal_jewelry_store_sanitize_html', ) ); $wp_customize->add_control( 'bridal_jewelry_store_pg_no_results_ttl', array( 'label' => __('No Results Title','bridal-jewelry-store'), 'section' => 'no_results_pg_options', 'type' => 'text', ) ); // Text // $wp_customize->add_setting( 'bridal_jewelry_store_pg_no_results_text', array( 'default' => __('Sorry, but nothing matched your search terms. Please try again with some different keywords.','bridal-jewelry-store'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bridal_jewelry_store_sanitize_html', ) ); $wp_customize->add_control( 'bridal_jewelry_store_pg_no_results_text', array( 'label' => __('No Results Text','bridal-jewelry-store'), 'section' => 'no_results_pg_options', 'type' => 'text', ) );