add_section( 'social_sharing', array( 'title' => __( 'Social Sharing', 'blossom-floral-pro' ), 'priority' => 31, 'panel' => 'general_settings', ) ); /** Enable Social Sharing Buttons */ $wp_customize->add_setting( 'ed_social_sharing', array( 'default' => true, 'sanitize_callback' => 'blossom_floral_pro_sanitize_checkbox', ) ); $wp_customize->add_control( new Blossom_Floral_Pro_Toggle_Control( $wp_customize, 'ed_social_sharing', array( 'section' => 'social_sharing', 'label' => __( 'Enable Social Sharing Buttons', 'blossom-floral-pro' ), 'description' => __( 'Enable or disable social sharing buttons on archive and single posts.', 'blossom-floral-pro' ), ) ) ); /** Enable Social Sharing Buttons */ $wp_customize->add_setting( 'ed_og_tags', array( 'default' => true, 'sanitize_callback' => 'blossom_floral_pro_sanitize_checkbox', ) ); $wp_customize->add_control( new Blossom_Floral_Pro_Toggle_Control( $wp_customize, 'ed_og_tags', array( 'section' => 'social_sharing', 'label' => __( 'Enable Open Graph Meta Tags', 'blossom-floral-pro' ), 'description' => __( 'Disable this option if you\'re using Jetpack, Yoast or other plugin to maintain Open Graph meta tags.', 'blossom-floral-pro' ), ) ) ); /** Social Sharing Buttons */ $wp_customize->add_setting( 'social_share', array( 'default' => array( 'facebook', 'twitter', 'pinterest', 'linkedin' ), 'sanitize_callback' => 'blossom_floral_pro_sanitize_sortable', ) ); $wp_customize->add_control( new Blossom_Floral_Pro_Sortable_Control( $wp_customize, 'social_share', array( 'section' => 'social_sharing', 'label' => __( 'Social Sharing Buttons', 'blossom-floral-pro' ), 'description' => __( 'Sort or toggle social sharing buttons.', 'blossom-floral-pro' ), 'choices' => array( 'facebook' => __( 'Facebook', 'blossom-floral-pro' ), 'twitter' => __( 'Twitter', 'blossom-floral-pro' ), 'pinterest' => __( 'Pinterest', 'blossom-floral-pro' ), 'linkedin' => __( 'Linkedin', 'blossom-floral-pro' ), 'email' => __( 'Email', 'blossom-floral-pro' ), 'reddit' => __( 'Reddit', 'blossom-floral-pro' ), 'tumblr' => __( 'Tumblr', 'blossom-floral-pro' ), 'digg' => __( 'Digg', 'blossom-floral-pro' ), 'weibo' => __( 'Weibo', 'blossom-floral-pro' ), 'xing' => __( 'Xing', 'blossom-floral-pro' ), 'vk' => __( 'VK', 'blossom-floral-pro' ), 'pocket' => __( 'GetPocket', 'blossom-floral-pro' ), 'whatsapp' => __( 'Whatsapp', 'blossom-floral-pro' ), 'telegram' => __( 'Telegram', 'blossom-floral-pro' ), ), ) ) ); } add_action( 'customize_register', 'blossom_floral_pro_customize_register_general_sharing' );