add_section( 'ananya_social_media_settings_section', array( 'title' => __( 'Social Menu Section', 'ananya' ), 'priority' => 4, 'capability' => 'edit_theme_options', 'panel' => 'ananya_options_panel', ) ); $wp_customize->add_setting( 'ananya_social_media_menu_enable', array( 'capability' => 'edit_theme_options', 'default' => false, 'transport' => 'refresh', 'sanitize_callback' => 'ananya_sanitize_checkbox', ) ); $wp_customize->add_control( 'ananya_social_media_menu_enable', array( 'type' => 'checkbox', 'priority' => 1, 'section' => 'ananya_social_media_settings_section', 'label' => __( 'Enable Social Media Icons in top Navigation.', 'ananya' ), 'settings' => 'ananya_social_media_menu_enable', ) ); // Social Icons Array $social_media_names = array( 'facebook' => 'Facebook', 'facebook-square' => 'Facebook Square', 'twitter' => 'Twitter', 'twitter-square' => 'Twitter Square', 'google' => 'Google', 'google-plus' => 'Google Plus', 'google-plus-square' => 'Google Plus Square', 'linkedin-square' => 'Linkedin Square', 'linkedin' => 'Linkedin In', 'pinterest' => 'Pinterest', 'pinterest-square' => 'Pinterest Square', 'behance' => 'Behance', 'behance-square' => 'Behance Square', 'tumblr' => 'Tumblr', 'tumblr-square' => 'Tumblr Square', 'reddit' => 'Reddit', 'reddit-square' => 'Reddit Square', 'dribbble' => 'Dribbble', 'vk' => 'vKontakte', 'skype' => 'Skype', 'film' => 'Film', 'youtube-play' => 'Youtube 1', 'youtube' => 'Youtube 2', 'youtube-square' => 'Youtube 3', 'vimeo-square' => 'Vimeo 1', 'soundcloud' => 'Soundcloud', 'instagram' => 'Instagram', 'info' => 'Info 1', 'info-circle' => 'Info 2', 'flickr' => 'Flickr', 'rss' => 'RSS 1', 'rss-square' => 'RSS 2', 'heart' => 'Heart 1', 'heart-o' => 'Heart 2', 'github' => 'Github 1', 'github-alt' => 'Github 2', 'github-square' => 'Github 3', 'stack-overflow' => 'Stack Overflow', 'qq' => 'QQ', 'weibo' => 'Weibo', 'weixin' => 'Weixin', 'xing' => 'Xing 1', 'xing-square' => 'Xing 2', 'gamepad' => 'Gamepad', 'medium' => 'Medium', 'map-marker' => 'Map Marker', 'envelope' => 'Envelope 1', 'envelope-o' => 'Envelope 2', 'envelope-square ' => 'Envelope 3', 'spotify' => 'Spotify', 'shopping-cart' => 'Cart', 'cc-paypal' => 'PayPal', 'credit-card' => 'Credit Card', ); for( $count=1; $count<=4; $count++ ) { $wp_customize->add_setting( 'ananya_social_media_icon_'.$count, array( 'default' => 'facebook', 'transport' => 'refresh', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'ananya_sanitize_select' ) ); $wp_customize->add_control( 'ananya_social_media_icon_'.$count, array( 'label' => __( 'Social Media Name', 'ananya' ), 'settings' => 'ananya_social_media_icon_'.$count, 'section' => 'ananya_social_media_settings_section', 'type' => 'select', 'choices' => $social_media_names, 'priority' => $count+1, ) ); $wp_customize->add_setting( 'ananya_social_media_url_'.$count, array( 'default' => '', 'transport' => 'refresh', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url' ) ); $wp_customize->add_control( 'ananya_social_media_url_'.$count, array( 'label' => __( 'Social Media URL', 'ananya' ), 'settings' => 'ananya_social_media_url_'.$count, 'section' => 'ananya_social_media_settings_section', 'type' => 'text', 'priority' => $count+1, ) ); } } add_action( 'customize_register', 'ananya_custom_social_media_section_setup' );