".esc_html__( "Social Links:", 'baithak' )."

"; $wp_customize->add_setting( 'social_links_title', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ) ); $wp_customize->add_control( new Baithak_Custom_Text( $wp_customize ,'social_links_title',array( 'section' => 'baithak_general_customization_section', 'label' => $social_links_title ) ) ); if( $social_links ) { foreach( $social_links as $social_link ) { $wp_customize->add_setting( 'social_links_' . strtolower( $social_link ), array( 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'social_links_' . strtolower( $social_link ), array( 'label' => $social_link, 'section' => 'baithak_general_customization_section', 'type' => 'text' ) ); } } }