Server IP : 192.158.238.246 / Your IP : 18.216.237.210 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/7779/cwd/themes/open-shop/customizer/section/layout/social-icon/ |
Upload File : |
<?php //Enable Loader $wp_customize->add_setting( 'open_shop_social_original_color', array( 'default' => false, 'sanitize_callback' => 'open_shop_sanitize_checkbox', )); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'open_shop_social_original_color', array( 'label' => esc_html__('Show Original Color', 'open-shop'), 'type' => 'checkbox', 'section' => 'open-shop-social-icon', 'settings' => 'open_shop_social_original_color', ))); $wp_customize->add_setting('social_shop_link_facebook', array( 'default' => '#', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('social_shop_link_facebook', array( 'label' => __('Facebook URL', 'open-shop'), 'section' => 'open-shop-social-icon', 'settings' => 'social_shop_link_facebook', 'type' => 'text', )); $wp_customize->add_setting('social_shop_link_linkedin', array( 'default' => '#', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('social_shop_link_linkedin', array( 'label' => __('LinkedIn URL', 'open-shop'), 'section' => 'open-shop-social-icon', 'settings' => 'social_shop_link_linkedin', 'type' => 'text', )); $wp_customize->add_setting('social_shop_link_pintrest', array( 'default' => '#', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('social_shop_link_pintrest', array( 'label' => __('Pinterest URL', 'open-shop'), 'section' => 'open-shop-social-icon', 'settings' => 'social_shop_link_pintrest', 'type' => 'text', )); $wp_customize->add_setting('social_shop_link_twitter', array( 'default' => '#', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('social_shop_link_twitter', array( 'label' => __('Twitter URL', 'open-shop'), 'section' => 'open-shop-social-icon', 'settings' => 'social_shop_link_twitter', 'type' => 'text', )); $wp_customize->add_setting('social_shop_link_insta', array( 'default' => '#', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('social_shop_link_insta', array( 'label' => __('Instagram URL', 'open-shop'), 'section' => 'open-shop-social-icon', 'settings' => 'social_shop_link_insta', 'type' => 'text', )); $wp_customize->add_setting('social_shop_link_tumblr', array( 'default' => '#', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('social_shop_link_tumblr', array( 'label' => __('Tumblr URL', 'open-shop'), 'section' => 'open-shop-social-icon', 'settings' => 'social_shop_link_tumblr', 'type' => 'text', )); $wp_customize->add_setting('social_shop_link_youtube', array( 'default' => '#', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('social_shop_link_youtube', array( 'label' => __('Youtube URL', 'open-shop'), 'section' => 'open-shop-social-icon', 'settings' => 'social_shop_link_youtube', 'type' => 'text', )); $wp_customize->add_setting('social_shop_link_stumbleupon', array( 'default' => '#', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('social_shop_link_stumbleupon', array( 'label' => __('Stumbleupon URL', 'open-shop'), 'section' => 'open-shop-social-icon', 'settings' => 'social_shop_link_stumbleupon', 'type' => 'text', )); $wp_customize->add_setting('social_shop_link_dribble', array( 'default' => '#', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('social_shop_link_dribble', array( 'label' => __('Dribble URL', 'open-shop'), 'section' => 'open-shop-social-icon', 'settings' => 'social_shop_link_dribble', 'type' => 'text', )); $wp_customize->add_setting('social_shop_link_skype', array( 'default' => '#', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('social_shop_link_skype', array( 'label' => __('Skype URL', 'open-shop'), 'section' => 'open-shop-social-icon', 'settings' => 'social_shop_link_skype', 'type' => 'text', )); /****************/ //body doc link /****************/ $wp_customize->add_setting('open_shop_social_link_more', array( 'sanitize_callback' => 'open_shop_sanitize_text', )); $wp_customize->add_control(new Open_Shop_Misc_Control( $wp_customize, 'open_shop_social_link_more', array( 'section' => 'open-shop-social-icon', 'type' => 'doc-link', 'url' => 'https://themehunk.com/docs/open-shop/#social-icon', 'description' => esc_html__( 'To know more go with this', 'open-shop' ), 'priority' =>100, )));