register_section_type( Audio_Player_Button::class ); $manager->add_section( new Audio_Player_Button( $manager, 'audio_player_pro', [ 'title' => esc_html( AUDIO_PLAYER_TEXT,'audio-player' ), 'priority' => 0, 'button_text' => __( 'GET PREMIUM', 'audio-player' ), 'button_url' => esc_url( AUDIO_PLAYER_URL ) ] ) ); } ); // Load the JS and CSS. add_action( 'customize_controls_enqueue_scripts', function() { $version = wp_get_theme()->get( 'Version' ); wp_enqueue_script( 'audio-player-customize-section-button', get_theme_file_uri( 'vendor/wptrt/customize-section-button/public/js/customize-controls.js' ), [ 'customize-controls' ], $version, true ); wp_enqueue_style( 'audio-player-customize-section-button', get_theme_file_uri( 'vendor/wptrt/customize-section-button/public/css/customize-controls.css' ), [ 'customize-controls' ], $version ); } ); /** * Add postMessage support for site title and description for the Theme Customizer. * * @param WP_Customize_Manager $wp_customize Theme Customizer object. */ function audio_player_customize_register($wp_customize){ // Pro Version class Audio_Player_Customize_Pro_Version extends WP_Customize_Control { public $type = 'pro_options'; public function render_content() { echo 'For More '. esc_html( $this->label ) .'?'; echo ''; echo ''; echo ' '. esc_html( AUDIO_PLAYER_BUY_TEXT,'audio-player' ) .''; echo ''; } } // Custom Controls function Audio_Player_sanitize_custom_control( $input ) { return $input; } $wp_customize->get_setting('blogname')->transport = 'postMessage'; $wp_customize->get_setting('blogdescription')->transport = 'postMessage'; //Logo $wp_customize->add_setting('audio_player_logo_max_height',array( 'default' => '24', 'sanitize_callback' => 'audio_player_sanitize_number_absint' )); $wp_customize->add_control('audio_player_logo_max_height',array( 'label' => esc_html__('Logo Width','audio-player'), 'section' => 'title_tagline', 'type' => 'number' )); $wp_customize->add_setting('audio_player_logo_title_text', array( 'default' => true, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'audio_player_logo_title_text',array( 'label' => __( 'Enable Disable Title', 'audio-player' ), 'section' => 'title_tagline', 'settings' => 'audio_player_logo_title_text', 'type' => 'checkbox', ))); $wp_customize->add_setting('audio_player_theme_description', array( 'default' => false, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'audio_player_theme_description',array( 'label' => __( 'Enable Disable Tagline', 'audio-player' ), 'section' => 'title_tagline', 'settings' => 'audio_player_theme_description', 'type' => 'checkbox', ))); $wp_customize->add_setting('audio_player_logo_title_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'audio_player_logo_title_color', array( 'label' => __('Site Title Color', 'audio-player'), 'section' => 'title_tagline' ))); $wp_customize->add_setting('audio_player_logo_tagline_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'audio_player_logo_tagline_color', array( 'label' => __('Site Tagline Color', 'audio-player'), 'section' => 'title_tagline' ))); // Pro Version $wp_customize->add_setting( 'pro_version_logo', array( 'sanitize_callback' => 'Audio_Player_sanitize_custom_control' )); $wp_customize->add_control( new Audio_Player_Customize_Pro_Version ( $wp_customize,'pro_version_logo', array( 'section' => 'title_tagline', 'type' => 'pro_options', 'label' => esc_html__( 'Customizer Options', 'audio-player' ), 'description' => esc_url( AUDIO_PLAYER_URL ), 'priority' => 100 ))); // General Settings $wp_customize->add_section('audio_player_general_settings',array( 'title' => esc_html__('General Settings','audio-player'), 'priority' => 30, )); $wp_customize->add_setting('audio_player_site_width_layout',array( 'default' => 'Full Width', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_site_width_layout',array( 'label' => esc_html__( 'Site Width Layout','audio-player' ), 'type' => 'radio', 'section' => 'audio_player_general_settings', 'choices' => array( 'Full Width' => __('Full Width','audio-player'), 'Wide Width' => __('Wide Width','audio-player'), 'Container Width' => __('Container Width','audio-player') ), ) ); $wp_customize->add_setting('audio_player_preloader_hide', array( 'default' => 0, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'audio_player_preloader_hide',array( 'label' => __( 'Show Theme Preloader', 'audio-player' ), 'section' => 'audio_player_general_settings', 'settings' => 'audio_player_preloader_hide', 'type' => 'checkbox', ))); $wp_customize->add_setting('audio_player_preloader_type',array( 'default' => 'Preloader 1', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_preloader_type',array( 'type' => 'radio', 'label' => esc_html__('Preloader Type','audio-player'), 'section' => 'audio_player_general_settings', 'choices' => array( 'Preloader 1' => __('Preloader 1','audio-player'), 'Preloader 2' => __('Preloader 2','audio-player'), ), ) ); $wp_customize->add_setting( 'audio_player_preloader_bg_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'audio_player_preloader_bg_color', array( 'label' => esc_html__('Preloader Background Color','audio-player'), 'section' => 'audio_player_general_settings', 'settings' => 'audio_player_preloader_bg_color' ))); $wp_customize->add_setting( 'audio_player_preloader_dot_1_color', array( 'default' => '#12aff5', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'audio_player_preloader_dot_1_color', array( 'label' => esc_html__('Preloader First Dot Color','audio-player'), 'section' => 'audio_player_general_settings', 'settings' => 'audio_player_preloader_dot_1_color', 'active_callback' => 'audio_player_preloader1' ))); $wp_customize->add_setting( 'audio_player_preloader_dot_2_color', array( 'default' => '#000000', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'audio_player_preloader_dot_2_color', array( 'label' => esc_html__('Preloader Second Dot Color','audio-player'), 'section' => 'audio_player_general_settings', 'settings' => 'audio_player_preloader_dot_2_color', 'active_callback' => 'audio_player_preloader1' ))); $wp_customize->add_setting( 'audio_player_preloader2_dot_color', array( 'default' => '#12aff5', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'audio_player_preloader2_dot_color', array( 'label' => esc_html__('Preloader Dot Color','audio-player'), 'section' => 'audio_player_general_settings', 'settings' => 'audio_player_preloader2_dot_color', 'active_callback' => 'audio_player_preloader2' ))); $wp_customize->add_setting('audio_player_scroll_hide', array( 'default' => false, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'audio_player_scroll_hide',array( 'label' => __( 'Show Theme Scroll To Top', 'audio-player' ), 'section' => 'audio_player_general_settings', 'settings' => 'audio_player_scroll_hide', 'type' => 'checkbox', ))); $wp_customize->add_setting('audio_player_scroll_top_position',array( 'default' => 'Right', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_scroll_top_position',array( 'label' => esc_html__( 'Scroll To Top Positions','audio-player' ), 'type' => 'radio', 'section' => 'audio_player_general_settings', 'choices' => array( 'Right' => __('Right','audio-player'), 'Left' => __('Left','audio-player'), 'Center' => __('Center','audio-player') ), ) ); $wp_customize->add_setting( 'audio_player_scroll_bg_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'audio_player_scroll_bg_color', array( 'label' => esc_html__('Scroll Top Background Color','audio-player'), 'section' => 'audio_player_general_settings', 'settings' => 'audio_player_scroll_bg_color' ))); $wp_customize->add_setting( 'audio_player_scroll_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'audio_player_scroll_color', array( 'label' => esc_html__('Scroll Top Color','audio-player'), 'section' => 'audio_player_general_settings', 'settings' => 'audio_player_scroll_color' ))); $wp_customize->add_setting('audio_player_scroll_font_size',array( 'default' => '16', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_scroll_font_size',array( 'label' => __('Scroll Top Font Size','audio-player'), 'description' => __('Put in px','audio-player'), 'section' => 'audio_player_general_settings', 'type' => 'number' )); $wp_customize->add_setting( 'audio_player_scroll_to_top_border_radius', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'audio_player_sanitize_number_range' ) ); $wp_customize->add_control( 'audio_player_scroll_to_top_border_radius', array( 'label' => esc_html__( 'Scroll To Top Border Radius','audio-player' ), 'section' => 'audio_player_general_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); // Product Columns $wp_customize->add_setting( 'audio_player_products_per_row' , array( 'default' => '3', 'transport' => 'refresh', 'sanitize_callback' => 'audio_player_sanitize_select', ) ); $wp_customize->add_control('audio_player_products_per_row', array( 'label' => __( 'Product per row', 'audio-player' ), 'section' => 'audio_player_general_settings', 'type' => 'select', 'choices' => array( '2' => '2', '3' => '3', '4' => '4', ), ) ); // Product Columns $wp_customize->add_setting('custom_related_products_number_per_row',array( 'default' => '3', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', )); $wp_customize->add_control('custom_related_products_number_per_row',array( 'label' => esc_html__('Related Products Column Count', 'audio-player'), 'section' => 'audio_player_general_settings', 'type' => 'number', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 4, ), )); // Product Columns $wp_customize->add_setting('custom_related_products_number',array( 'default' => '3', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', )); $wp_customize->add_control('custom_related_products_number',array( 'label' => esc_html__('Number of Related Products Per Page', 'audio-player'), 'section' => 'audio_player_general_settings', 'type' => 'number', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 10, ), )); $wp_customize->add_setting('audio_player_related_product_display_setting', array( 'default' => true, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'audio_player_related_product_display_setting',array( 'label' => __( 'Show Related Products', 'audio-player' ), 'section' => 'audio_player_general_settings', 'settings' => 'audio_player_related_product_display_setting', 'type' => 'checkbox', ))); //Woocommerce shop page Sidebar $wp_customize->add_setting('audio_player_woocommerce_shop_page_sidebar', array( 'default' => true, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'audio_player_woocommerce_shop_page_sidebar',array( 'label' => __( 'Hide Shop Page Sidebar', 'audio-player' ), 'section' => 'audio_player_general_settings', 'settings' => 'audio_player_woocommerce_shop_page_sidebar', 'type' => 'checkbox', ))); $wp_customize->add_setting('audio_player_shop_page_sidebar_layout',array( 'default' => 'Right Sidebar', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_shop_page_sidebar_layout',array( 'type' => 'select', 'label' => __('Woocommerce Shop Page Sidebar','audio-player'), 'section' => 'audio_player_general_settings', 'choices' => array( 'Left Sidebar' => __('Left Sidebar','audio-player'), 'Right Sidebar' => __('Right Sidebar','audio-player'), ), ) ); //Woocommerce Single Product page Sidebar $wp_customize->add_setting('audio_player_woocommerce_single_product_page_sidebar', array( 'default' => true, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'audio_player_woocommerce_single_product_page_sidebar',array( 'label' => __( 'Hide Single Product Page Sidebar', 'audio-player' ), 'section' => 'audio_player_general_settings', 'settings' => 'audio_player_woocommerce_single_product_page_sidebar', 'type' => 'checkbox', ))); $wp_customize->add_setting('audio_player_single_product_sidebar_layout',array( 'default' => 'Right Sidebar', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_single_product_sidebar_layout',array( 'type' => 'select', 'label' => __('Woocommerce Single Product Page Sidebar','audio-player'), 'section' => 'audio_player_general_settings', 'choices' => array( 'Left Sidebar' => __('Left Sidebar','audio-player'), 'Right Sidebar' => __('Right Sidebar','audio-player'), ), ) ); $wp_customize->add_setting('audio_player_woocommerce_product_sale',array( 'default' => 'Left', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_woocommerce_product_sale',array( 'label' => esc_html__( 'Woocommerce Product Sale Positions','audio-player' ), 'type' => 'radio', 'section' => 'audio_player_general_settings', 'choices' => array( 'Right' => __('Right','audio-player'), 'Left' => __('Left','audio-player'), 'Center' => __('Center','audio-player') ), ) ); $wp_customize->add_setting( 'audio_player_woo_product_sale_border_radius', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'audio_player_sanitize_number_range' ) ); $wp_customize->add_control( 'audio_player_woo_product_sale_border_radius', array( 'label' => esc_html__( 'Woocommerce Product Sale Border Radius','audio-player' ), 'section' => 'audio_player_general_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); //Products border radius $wp_customize->add_setting( 'audio_player_woo_product_border_radius', array( 'default' => '0', 'transport' => 'refresh', 'sanitize_callback' => 'audio_player_sanitize_number_range' ) ); $wp_customize->add_control( 'audio_player_woo_product_border_radius', array( 'label' => esc_html__( 'Product Border Radius','audio-player' ), 'section' => 'audio_player_general_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 170, ), ) ); // Pro Version $wp_customize->add_setting( 'pro_version_general_setting', array( 'sanitize_callback' => 'Audio_Player_sanitize_custom_control' )); $wp_customize->add_control( new Audio_Player_Customize_Pro_Version ( $wp_customize,'pro_version_general_setting', array( 'section' => 'audio_player_general_settings', 'type' => 'pro_options', 'label' => esc_html__( 'Customizer Options', 'audio-player' ), 'description' => esc_url( AUDIO_PLAYER_URL ), 'priority' => 100 ))); // Social Link $wp_customize->add_section('audio_player_social_link',array( 'title' => esc_html__('Social Links','audio-player'), )); $wp_customize->add_setting('audio_player_facebook_icon',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_facebook_icon',array( 'label' => esc_html__('Facebook Icon','audio-player'), 'section' => 'audio_player_social_link', 'setting' => 'audio_player_facebook_icon', 'type' => 'text', 'default' => 'fab fa-facebook-f', 'description' => __('Select font awesome icons Click Here for select icon. for eg:-fab fa-facebook-f','audio-player') )); $wp_customize->add_setting('audio_player_facebook_url',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw' )); $wp_customize->add_control('audio_player_facebook_url',array( 'label' => esc_html__('Facebook Link','audio-player'), 'section' => 'audio_player_social_link', 'setting' => 'audio_player_facebook_url', 'type' => 'url' )); $wp_customize->add_setting('audio_player_twitter_icon',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_twitter_icon',array( 'label' => esc_html__('Twitter Icon','audio-player'), 'section' => 'audio_player_social_link', 'setting' => 'audio_player_twitter_icon', 'type' => 'text', 'default' => 'fab fa-twitter', 'description' => __('Select font awesome icons Click Here for select icon. for eg:-fab fa-twitter','audio-player') )); $wp_customize->add_setting('audio_player_twitter_url',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw' )); $wp_customize->add_control('audio_player_twitter_url',array( 'label' => esc_html__('Twitter Link','audio-player'), 'section' => 'audio_player_social_link', 'setting' => 'audio_player_twitter_url', 'type' => 'url' )); $wp_customize->add_setting('audio_player_intagram_icon',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_intagram_icon',array( 'label' => esc_html__('Intagram Icon','audio-player'), 'section' => 'audio_player_social_link', 'setting' => 'audio_player_intagram_icon', 'type' => 'text', 'default' => 'fab fa-instagram', 'description' => __('Select font awesome icons Click Here for select icon. for eg:-fab fa-instagram','audio-player') )); $wp_customize->add_setting('audio_player_intagram_url',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw' )); $wp_customize->add_control('audio_player_intagram_url',array( 'label' => esc_html__('Intagram Link','audio-player'), 'section' => 'audio_player_social_link', 'setting' => 'audio_player_intagram_url', 'type' => 'url' )); $wp_customize->add_setting('audio_player_linkedin_icon',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_linkedin_icon',array( 'label' => esc_html__('Linkedin Icon','audio-player'), 'section' => 'audio_player_social_link', 'setting' => 'audio_player_linkedin_icon', 'type' => 'text', 'default' => 'fab fa-linkedin-in', 'description' => __('Select font awesome icons Click Here for select icon. for eg:-fab fa-linkedin-in','audio-player') )); $wp_customize->add_setting('audio_player_linkedin_url',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw' )); $wp_customize->add_control('audio_player_linkedin_url',array( 'label' => esc_html__('Linkedin Link','audio-player'), 'section' => 'audio_player_social_link', 'setting' => 'audio_player_linkedin_url', 'type' => 'url' )); $wp_customize->add_setting('audio_player_pintrest_icon',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_pintrest_icon',array( 'label' => esc_html__('Pinterest Icon','audio-player'), 'section' => 'audio_player_social_link', 'setting' => 'audio_player_pintrest_icon', 'type' => 'text', 'default' => 'fab fa-pinterest-p', 'description' => __('Select font awesome icons Click Here for select icon. for eg:-fab fa-pinterest-p','audio-player') )); $wp_customize->add_setting('audio_player_pintrest_url',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw' )); $wp_customize->add_control('audio_player_pintrest_url',array( 'label' => esc_html__('Pinterest Link','audio-player'), 'section' => 'audio_player_social_link', 'setting' => 'audio_player_pintrest_url', 'type' => 'url' )); // Pro Version $wp_customize->add_setting( 'pro_version_social_setting', array( 'sanitize_callback' => 'Audio_Player_sanitize_custom_control' )); $wp_customize->add_control( new Audio_Player_Customize_Pro_Version ( $wp_customize,'pro_version_social_setting', array( 'section' => 'audio_player_social_link', 'type' => 'pro_options', 'label' => esc_html__( 'Customizer Options', 'audio-player' ), 'description' => esc_url( AUDIO_PLAYER_URL ), 'priority' => 100 ))); //404 Page Settings $wp_customize->add_section('audio_player_404_page_settings',array( 'title' => esc_html__(' 404 Page Settings','audio-player') )); $wp_customize->add_setting('audio_player_404_page_main_heading',array( 'default' => __( 'Oops! Page Not Found', 'audio-player' ), 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_404_page_main_heading',array( 'label' => esc_html__('404 Main Heading','audio-player'), 'section' => 'audio_player_404_page_settings', 'setting' => 'audio_player_404_page_main_heading', 'type' => 'text' )); $wp_customize->add_setting('audio_player_404_page_content_1',array( 'default' => __( 'We can’t seem to find the page you’re looking for.', 'audio-player' ), 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_404_page_content_1',array( 'label' => esc_html__('404 Main Content 1','audio-player'), 'section' => 'audio_player_404_page_settings', 'setting' => 'audio_player_404_page_content_1', 'type' => 'text' )); $wp_customize->add_setting('audio_player_404_page_text_1',array( 'default' => __( 'It looks like nothing was found at this location.', 'audio-player' ), 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_404_page_text_1',array( 'label' => esc_html__('404 Text 1','audio-player'), 'section' => 'audio_player_404_page_settings', 'setting' => 'audio_player_404_page_text_1', 'type' => 'text' )); $wp_customize->add_setting('audio_player_404_page_content_2',array( 'default' => __( 'Need Help?', 'audio-player' ), 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_404_page_content_2',array( 'label' => esc_html__('404 Main Content 2','audio-player'), 'section' => 'audio_player_404_page_settings', 'setting' => 'audio_player_404_page_content_2', 'type' => 'text' )); $wp_customize->add_setting('audio_player_404_page_text_2',array( 'default' => __( 'Try searching for what you need below.', 'audio-player' ), 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_404_page_text_2',array( 'label' => esc_html__('404 Text 2','audio-player'), 'section' => 'audio_player_404_page_settings', 'setting' => 'audio_player_404_page_text_2', 'type' => 'text' )); //TopBar $wp_customize->add_section('audio_player_topbar',array( 'title' => esc_html__('Topbar Option','audio-player') )); $wp_customize->add_setting('audio_player_topbar_register_button',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_topbar_register_button',array( 'label' => esc_html__('Register Button','audio-player'), 'section' => 'audio_player_topbar', 'setting' => 'audio_player_topbar_register_button', 'type' => 'text' )); $wp_customize->add_setting('audio_player_topbar_register_button_url',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_topbar_register_button_url',array( 'label' => esc_html__('Register Button Url','audio-player'), 'section' => 'audio_player_topbar', 'setting' => 'audio_player_topbar_register_button_url', 'type' => 'text' )); // Pro Version $wp_customize->add_setting( 'pro_version_topbar_setting', array( 'sanitize_callback' => 'Audio_Player_sanitize_custom_control' )); $wp_customize->add_control( new Audio_Player_Customize_Pro_Version ( $wp_customize,'pro_version_topbar_setting', array( 'section' => 'audio_player_topbar', 'type' => 'pro_options', 'label' => esc_html__( 'Customizer Options', 'audio-player' ), 'description' => esc_url( AUDIO_PLAYER_URL ), 'priority' => 100 ))); //Menu Settings $wp_customize->add_section('audio_player_menu_settings',array( 'title' => esc_html__('Menus Settings','audio-player'), )); $wp_customize->add_setting('audio_player_menu_font_size',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_menu_font_size',array( 'label' => esc_html__('Menu Font Size','audio-player'), 'section' => 'audio_player_menu_settings', 'type' => 'number' )); $wp_customize->add_setting('audio_player_nav_menu_text_transform',array( 'default'=> 'Uppercase', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_nav_menu_text_transform',array( 'type' => 'radio', 'label' => esc_html__('Menu Text Transform','audio-player'), 'choices' => array( 'Uppercase' => __('Uppercase','audio-player'), 'Capitalize' => __('Capitalize','audio-player'), 'Lowercase' => __('Lowercase','audio-player'), ), 'section'=> 'audio_player_menu_settings', )); $wp_customize->add_setting('audio_player_nav_menu_font_weight',array( 'default'=> '400', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_nav_menu_font_weight',array( 'type' => 'number', 'label' => esc_html__('Menu Font Weight','audio-player'), 'input_attrs' => array( 'step' => 100, 'min' => 100, 'max' => 1000, ), 'section'=> 'audio_player_menu_settings', )); //Slider $wp_customize->add_section('audio_player_top_slider',array( 'title' => esc_html__('Slider Settings','audio-player'), 'description' => esc_html__('Here you have to add 3 different pages in below dropdown. Note: Image Dimensions 1400 x 550 px','audio-player') )); $wp_customize->add_setting('audio_player_top_slider_setting', array( 'default' => 0, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'audio_player_top_slider_setting',array( 'label' => __( 'Enable Disable Slider', 'audio-player' ), 'section' => 'audio_player_top_slider', 'settings' => 'audio_player_top_slider_setting', 'type' => 'checkbox', ))); $wp_customize->add_setting('audio_player_slider_title_setting', array( 'default' => 1, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'audio_player_slider_title_setting',array( 'label' => __( 'Enable Disable Slider Title', 'audio-player' ), 'section' => 'audio_player_top_slider', 'settings' => 'audio_player_slider_title_setting', 'type' => 'checkbox', ))); $wp_customize->add_setting('audio_player_slider_content_setting', array( 'default' => 1, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'audio_player_slider_content_setting',array( 'label' => __( 'Enable Disable Slider Content', 'audio-player' ), 'section' => 'audio_player_top_slider', 'settings' => 'audio_player_slider_content_setting', 'type' => 'checkbox', ))); $wp_customize->add_setting('audio_player_slider_button_setting', array( 'default' => 1, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'audio_player_slider_button_setting',array( 'label' => __( 'Enable Disable Slider Button', 'audio-player' ), 'section' => 'audio_player_top_slider', 'settings' => 'audio_player_slider_button_setting', 'type' => 'checkbox', ))); $wp_customize->add_setting('audio_player_slider_heading',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_slider_heading',array( 'label' => esc_html__('Slider Heading','audio-player'), 'section' => 'audio_player_top_slider', 'setting' => 'audio_player_slider_heading', 'type' => 'text' )); for ( $audio_player_count = 1; $audio_player_count <= 3; $audio_player_count++ ) { $wp_customize->add_setting( 'audio_player_top_slider_page' . $audio_player_count, array( 'default' => '', 'sanitize_callback' => 'audio_player_sanitize_dropdown_pages' ) ); $wp_customize->add_control( 'audio_player_top_slider_page' . $audio_player_count, array( 'label' => __( 'Select Slide Page', 'audio-player' ), 'section' => 'audio_player_top_slider', 'type' => 'dropdown-pages' ) ); } $wp_customize->add_setting('audio_player_slider_content_layout',array( 'default'=> 'Left', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_slider_content_layout',array( 'type' => 'radio', 'label' => esc_html__('Slider Content Layout','audio-player'), 'choices' => array( 'Left' => __('Left','audio-player'), 'Center' => __('Center','audio-player'), 'Right' => __('Right','audio-player'), ), 'section'=> 'audio_player_top_slider', )); $wp_customize->add_setting('audio_player_slider_excerpt_length',array( 'sanitize_callback' => 'audio_player_sanitize_number_range', 'default' => 70, )); $wp_customize->add_control('audio_player_slider_excerpt_length',array( 'label' => esc_html__('Slider Excerpt Length', 'audio-player'), 'section' => 'audio_player_top_slider', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 100, ), )); $wp_customize->add_setting('audio_player_slider_opacity_setting', array( 'default' => true, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'audio_player_slider_opacity_setting',array( 'label' => __( 'Show Image Opacity', 'audio-player' ), 'section' => 'audio_player_top_slider', 'type' => 'checkbox', ))); $wp_customize->add_setting( 'audio_player_image_opacity_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'audio_player_image_opacity_color', array( 'label' => __('Slider Image Opacity Color', 'audio-player'), 'section' => 'audio_player_top_slider', 'settings' => 'audio_player_image_opacity_color', ))); $wp_customize->add_setting('audio_player_slider_opacity',array( 'default'=> '0.5', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_slider_opacity',array( 'type' => 'select', 'label' => esc_html__('Slider Image Opacity','audio-player'), 'choices' => array( '0' => '0', '0.1' => '0.1', '0.2' => '0.2', '0.3' => '0.3', '0.4' => '0.4', '0.5' => '0.5', '0.6' => '0.6', '0.7' => '0.7', '0.8' => '0.8', '0.9' => '0.9', '1' => '1', ), 'section'=> 'audio_player_top_slider', )); $wp_customize->add_setting('audio_player_player_shortcode',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_player_shortcode',array( 'label' => __('Player Shortcode','audio-player'), 'section' => 'audio_player_top_slider', 'setting' => 'audio_player_player_shortcode', 'type' => 'text' )); //Slider button text $wp_customize->add_setting('audio_player_slider_button_text',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_slider_button_text',array( 'label' => __('Slider Button Text','audio-player'), 'section'=> 'audio_player_top_slider', 'type'=> 'text' )); //Opacity $wp_customize->add_setting('audio_player_slider_opacity_color',array( 'default' => '0.5', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control( 'audio_player_slider_opacity_color', array( 'label' => esc_html__( 'Slider Image Opacity','audio-player' ), 'section' => 'audio_player_top_slider', 'type' => 'select', 'choices' => array( '0' => esc_attr('0','audio-player'), '0.1' => esc_attr('0.1','audio-player'), '0.2' => esc_attr('0.2','audio-player'), '0.3' => esc_attr('0.3','audio-player'), '0.4' => esc_attr('0.4','audio-player'), '0.5' => esc_attr('0.5','audio-player'), '0.6' => esc_attr('0.6','audio-player'), '0.7' => esc_attr('0.7','audio-player'), '0.8' => esc_attr('0.8','audio-player'), '0.9' => esc_attr('0.9','audio-player') ), )); //Slider height $wp_customize->add_setting('audio_player_slider_img_height',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_slider_img_height',array( 'label' => __('Slider Height','audio-player'), 'description' => __('Add the slider height in px(eg. 500px).','audio-player'), 'input_attrs' => array( 'placeholder' => __( '500px', 'audio-player' ), ), 'section'=> 'audio_player_top_slider', 'type'=> 'text' )); // Pro Version $wp_customize->add_setting( 'pro_version_slider_setting', array( 'sanitize_callback' => 'Audio_Player_sanitize_custom_control' )); $wp_customize->add_control( new Audio_Player_Customize_Pro_Version ( $wp_customize,'pro_version_slider_setting', array( 'section' => 'audio_player_top_slider', 'type' => 'pro_options', 'label' => esc_html__( 'Customizer Options', 'audio-player' ), 'description' => esc_url( AUDIO_PLAYER_URL ), 'priority' => 100 ))); // Our Feature $wp_customize->add_section('audio_player_feature_section',array( 'title' => esc_html__('Feature Option','audio-player'), 'description' => esc_html__('Here you have to select category which will display Feature in the home page.','audio-player') )); $wp_customize->add_setting('audio_player_feature_long_heading',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_feature_long_heading',array( 'label' => esc_html__('Main Heading','audio-player'), 'section' => 'audio_player_feature_section', 'setting' => 'audio_player_feature_long_heading', 'type' => 'text' )); $wp_customize->add_setting('audio_player_feature_short_heading',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_feature_short_heading',array( 'label' => esc_html__('Short Heading','audio-player'), 'section' => 'audio_player_feature_section', 'setting' => 'audio_player_feature_short_heading', 'type' => 'text' )); $categories = get_categories(); $cat_post = array(); $cat_post[]= 'select'; $i = 0; foreach($categories as $category){ if($i==0){ $default = $category->slug; $i++; } $cat_post[$category->slug] = $category->name; } $wp_customize->add_setting('audio_player_feature_sec_category',array( 'default' => 'select', 'sanitize_callback' => 'audio_player_sanitize_select', )); $wp_customize->add_control('audio_player_feature_sec_category',array( 'type' => 'select', 'choices' => $cat_post, 'label' => __('Select Category to display services','audio-player'), 'section' => 'audio_player_feature_section', )); // Pro Version $wp_customize->add_setting( 'pro_version_features_setting', array( 'sanitize_callback' => 'Audio_Player_sanitize_custom_control' )); $wp_customize->add_control( new Audio_Player_Customize_Pro_Version ( $wp_customize,'pro_version_features_setting', array( 'section' => 'audio_player_feature_section', 'type' => 'pro_options', 'label' => esc_html__( 'Customizer Options', 'audio-player' ), 'description' => esc_url( AUDIO_PLAYER_URL ), 'priority' => 100 ))); // Footer $wp_customize->add_section('audio_player_site_footer_section', array( 'title' => esc_html__('Footer', 'audio-player'), )); $wp_customize->add_setting('audio_player_show_hide_footer',array( 'default' => true, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control('audio_player_show_hide_footer',array( 'type' => 'checkbox', 'label' => __('Show / Hide Footer','audio-player'), 'section' => 'audio_player_site_footer_section', 'priority' => 1, )); $wp_customize->add_setting('audio_player_footer_bg_image',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control( new WP_Customize_Image_Control($wp_customize,'audio_player_footer_bg_image',array( 'label' => __('Footer Background Image','audio-player'), 'section' => 'audio_player_site_footer_section', 'priority' => 1, ))); $wp_customize->add_setting('audio_player_footer_bg_image_position',array( 'default'=> 'scroll', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_footer_bg_image_position',array( 'type' => 'select', 'label' => __('Footer Background Image Position','audio-player'), 'choices' => array( 'fixed' => __('fixed','audio-player'), 'scroll' => __('scroll','audio-player'), ), 'section'=> 'audio_player_site_footer_section', )); $wp_customize->add_setting( 'audio_player_footer_bg_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'audio_player_footer_bg_color', array( 'label' => __('Footer Background Color', 'audio-player'), 'section' => 'audio_player_site_footer_section', 'settings' => 'audio_player_footer_bg_color', ))); $wp_customize->add_setting( 'audio_player_footer_content_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'audio_player_footer_content_color', array( 'label' => __('Footer Content Color', 'audio-player'), 'section' => 'audio_player_site_footer_section', 'settings' => 'audio_player_footer_content_color', ))); $wp_customize->add_setting('audio_player_footer_widget_heading_alignment',array( 'default' => 'Left', 'transport' => 'refresh', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_footer_widget_heading_alignment',array( 'type' => 'select', 'label' => __('Footer Widget Heading Alignment','audio-player'), 'section' => 'audio_player_site_footer_section', 'choices' => array( 'Left' => __('Left','audio-player'), 'Center' => __('Center','audio-player'), 'Right' => __('Right','audio-player') ), ) ); $wp_customize->add_setting('audio_player_footer_widget_content_alignment',array( 'default' => 'Left', 'transport' => 'refresh', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_footer_widget_content_alignment',array( 'type' => 'select', 'label' => __('Footer Widget Content Alignment','audio-player'), 'section' => 'audio_player_site_footer_section', 'choices' => array( 'Left' => __('Left','audio-player'), 'Center' => __('Center','audio-player'), 'Right' => __('Right','audio-player') ), ) ); $wp_customize->add_setting('audio_player_show_hide_copyright',array( 'default' => true, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control('audio_player_show_hide_copyright',array( 'type' => 'checkbox', 'label' => __('Show / Hide Copyright','audio-player'), 'section' => 'audio_player_site_footer_section', )); $wp_customize->add_setting('audio_player_footer_text_setting', array( 'sanitize_callback' => 'sanitize_text_field', )); $wp_customize->add_control('audio_player_footer_text_setting', array( 'label' => __('Replace the footer text', 'audio-player'), 'section' => 'audio_player_site_footer_section', 'type' => 'text', )); $wp_customize->add_setting('audio_player_copyright_content_alignment',array( 'default' => 'Right', 'transport' => 'refresh', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control('audio_player_copyright_content_alignment',array( 'type' => 'select', 'label' => __('Copyright Content Alignment','audio-player'), 'section' => 'audio_player_site_footer_section', 'choices' => array( 'Left' => __('Left','audio-player'), 'Center' => __('Center','audio-player'), 'Right' => __('Right','audio-player') ), ) ); $wp_customize->add_setting('audio_player_copyright_background_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'audio_player_copyright_background_color', array( 'label' => __('Copyright Background Color', 'audio-player'), 'section' => 'audio_player_site_footer_section', ))); $wp_customize->add_setting( 'audio_player_copyright_text_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'audio_player_copyright_text_color', array( 'label' => __('Copyright Text Color', 'audio-player'), 'section' => 'audio_player_site_footer_section', 'settings' => 'audio_player_copyright_text_color', ))); // Pro Version $wp_customize->add_setting( 'pro_version_footer_setting', array( 'sanitize_callback' => 'Audio_Player_sanitize_custom_control' )); $wp_customize->add_control( new Audio_Player_Customize_Pro_Version ( $wp_customize,'pro_version_footer_setting', array( 'section' => 'audio_player_site_footer_section', 'type' => 'pro_options', 'label' => esc_html__( 'Customizer Options', 'audio-player' ), 'description' => esc_url( AUDIO_PLAYER_URL ), 'priority' => 100 ))); // Post Settings $wp_customize->add_section('audio_player_post_settings',array( 'title' => esc_html__('Post Settings','audio-player'), 'priority' =>40, )); $wp_customize->add_setting('audio_player_post_page_title',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_post_page_title',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Post Page Title', 'audio-player'), 'section' => 'audio_player_post_settings', 'description' => esc_html__('Check this box to enable title on post page.', 'audio-player'), )); $wp_customize->add_setting('audio_player_post_page_meta',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_post_page_meta',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Post Page Meta', 'audio-player'), 'section' => 'audio_player_post_settings', 'description' => esc_html__('Check this box to enable meta on post page.', 'audio-player'), )); $wp_customize->add_setting('audio_player_post_page_thumb',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_post_page_thumb',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Post Page Thumbnail', 'audio-player'), 'section' => 'audio_player_post_settings', 'description' => esc_html__('Check this box to enable thumbnail on post page.', 'audio-player'), )); $wp_customize->add_setting('audio_player_post_page_content',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_post_page_content',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Post Page Content', 'audio-player'), 'section' => 'audio_player_post_settings', 'description' => esc_html__('Check this box to enable content on post page.', 'audio-player'), )); $wp_customize->add_setting('audio_player_post_page_excerpt_length',array( 'sanitize_callback' => 'audio_player_sanitize_number_range', 'default' => 30, )); $wp_customize->add_control('audio_player_post_page_excerpt_length',array( 'label' => esc_html__('Post Page Excerpt Length', 'audio-player'), 'section' => 'audio_player_post_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), )); $wp_customize->add_setting('audio_player_post_page_excerpt_suffix',array( 'sanitize_callback' => 'sanitize_text_field', 'default' => '[...]', )); $wp_customize->add_control('audio_player_post_page_excerpt_suffix',array( 'type' => 'text', 'label' => esc_html__('Post Page Excerpt Suffix', 'audio-player'), 'section' => 'audio_player_post_settings', 'description' => esc_html__('For Ex. [...], etc', 'audio-player'), )); $wp_customize->add_setting( 'audio_player_blog_post_columns', array( 'default' => 'Two', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control( 'audio_player_blog_post_columns', array( 'section' => 'audio_player_post_settings', 'type' => 'select', 'label' => __( 'No. of Posts per row', 'audio-player' ), 'choices' => array( 'One' => __( 'One', 'audio-player' ), 'Two' => __( 'Two', 'audio-player' ), 'Three' => __( 'Three', 'audio-player' ), ) )); $wp_customize->add_setting('audio_player_post_page_btn',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_post_page_btn',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Post Page Button', 'audio-player'), 'section' => 'audio_player_post_settings', 'description' => esc_html__('Check this box to enable button on post page.', 'audio-player'), )); $wp_customize->add_setting('audio_player_post_page_pagination',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_post_page_pagination',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Post Page Pagination', 'audio-player'), 'section' => 'audio_player_post_settings', 'description' => esc_html__('Check this box to enable pagination on post page.', 'audio-player'), )); $wp_customize->add_setting( 'audio_player_blog_pagination_type', array( 'default' => 'blog-nav-numbers', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control( 'audio_player_blog_pagination_type', array( 'section' => 'audio_player_post_settings', 'type' => 'select', 'label' => __( 'Post Pagination Type', 'audio-player' ), 'choices' => array( 'blog-nav-numbers' => __( 'Numeric', 'audio-player' ), 'next-prev' => __( 'Older/Newer Posts', 'audio-player' ), ) )); $wp_customize->add_setting( 'audio_player_blog_sidebar_position', array( 'default' => 'Right Side', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control( 'audio_player_blog_sidebar_position', array( 'section' => 'audio_player_post_settings', 'type' => 'select', 'label' => __( 'Post Page Sidebar Position', 'audio-player' ), 'choices' => array( 'Right Side' => __( 'Right Side', 'audio-player' ), 'Left Side' => __( 'Left Side', 'audio-player' ), ) )); $wp_customize->add_setting('audio_player_single_post_thumb',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_single_post_thumb',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Single Post Thumbnail', 'audio-player'), 'section' => 'audio_player_post_settings', 'description' => esc_html__('Check this box to enable post thumbnail on single post.', 'audio-player'), )); $wp_customize->add_setting( 'audio_player_single_post_page_image_border_radius', array( 'default' => '0', 'transport' => 'refresh', 'sanitize_callback' => 'audio_player_sanitize_number_range' ) ); $wp_customize->add_control( 'audio_player_single_post_page_image_border_radius', array( 'label' => esc_html__( 'Single Post Page Image Border Radius','audio-player' ), 'section' => 'audio_player_post_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); $wp_customize->add_setting( 'audio_player_single_post_page_image_box_shadow', array( 'default' => '0', 'transport' => 'refresh', 'sanitize_callback' => 'audio_player_sanitize_number_range' ) ); $wp_customize->add_control( 'audio_player_single_post_page_image_box_shadow', array( 'label' => esc_html__( 'Single Post Page Image Box Shadow','audio-player' ), 'section' => 'audio_player_post_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); $wp_customize->add_setting('audio_player_single_post_meta',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_single_post_meta',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Single Post Meta', 'audio-player'), 'section' => 'audio_player_post_settings', 'description' => esc_html__('Check this box to enable single post meta such as post date, author, category, comment etc.', 'audio-player'), )); $wp_customize->add_setting('audio_player_single_post_title',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_single_post_title',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Single Post Title', 'audio-player'), 'section' => 'audio_player_post_settings', 'description' => esc_html__('Check this box to enable title on single post.', 'audio-player'), )); $wp_customize->add_setting('audio_player_single_post_page_content',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_single_post_page_content',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Single Post Page Content', 'audio-player'), 'section' => 'audio_player_post_settings', 'description' => esc_html__('Check this box to enable content on single post page.', 'audio-player'), )); $wp_customize->add_setting('audio_player_single_post_tags',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_single_post_tags',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Single Post Tags', 'audio-player'), 'section' => 'audio_player_post_settings', 'description' => esc_html__('Check this box to enable tags on single post.', 'audio-player'), )); $wp_customize->add_setting( 'audio_player_single_post_sidebar_position', array( 'default' => 'Right Side', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control( 'audio_player_single_post_sidebar_position', array( 'section' => 'audio_player_post_settings', 'type' => 'select', 'label' => __( 'Single Post Sidebar Position', 'audio-player' ), 'choices' => array( 'Right Side' => __( 'Right Side', 'audio-player' ), 'Left Side' => __( 'Left Side', 'audio-player' ), ) )); $wp_customize->add_setting('audio_player_single_post_navigation_show_hide',array( 'default' => true, 'sanitize_callback' => 'audio_player_sanitize_checkbox' )); $wp_customize->add_control('audio_player_single_post_navigation_show_hide',array( 'type' => 'checkbox', 'label' => __('Show / Hide Post Navigation','audio-player'), 'section' => 'audio_player_post_settings', )); $wp_customize->add_setting('audio_player_single_post_comment_title',array( 'default'=> 'Leave a Reply', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_single_post_comment_title',array( 'label' => __('Add Comment Title','audio-player'), 'input_attrs' => array( 'placeholder' => __( 'Leave a Reply', 'audio-player' ), ), 'section'=> 'audio_player_post_settings', 'type'=> 'text' )); $wp_customize->add_setting('audio_player_single_post_comment_btn_text',array( 'default'=> 'Post Comment', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('audio_player_single_post_comment_btn_text',array( 'label' => __('Add Comment Button Text','audio-player'), 'input_attrs' => array( 'placeholder' => __( 'Post Comment', 'audio-player' ), ), 'section'=> 'audio_player_post_settings', 'type'=> 'text' )); // Pro Version $wp_customize->add_setting( 'pro_version_post_setting', array( 'sanitize_callback' => 'Audio_Player_sanitize_custom_control' )); $wp_customize->add_control( new Audio_Player_Customize_Pro_Version ( $wp_customize,'pro_version_post_setting', array( 'section' => 'audio_player_post_settings', 'type' => 'pro_options', 'label' => esc_html__( 'Customizer Options', 'audio-player' ), 'description' => esc_url( AUDIO_PLAYER_URL ), 'priority' => 100 ))); // Page Settings $wp_customize->add_section('audio_player_page_settings',array( 'title' => esc_html__('Page Settings','audio-player'), 'priority' =>50, )); $wp_customize->add_setting('audio_player_single_page_title',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_single_page_title',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Single Page Title', 'audio-player'), 'section' => 'audio_player_page_settings', 'description' => esc_html__('Check this box to enable title on single page.', 'audio-player'), )); $wp_customize->add_setting('audio_player_single_page_thumb',array( 'sanitize_callback' => 'audio_player_sanitize_checkbox', 'default' => 1, )); $wp_customize->add_control('audio_player_single_page_thumb',array( 'type' => 'checkbox', 'label' => esc_html__('Enable Single Page Thumbnail', 'audio-player'), 'section' => 'audio_player_page_settings', 'description' => esc_html__('Check this box to enable page thumbnail on single page.', 'audio-player'), )); $wp_customize->add_setting( 'audio_player_single_page_sidebar_layout', array( 'default' => 'No Sidebar', 'sanitize_callback' => 'audio_player_sanitize_choices' )); $wp_customize->add_control( 'audio_player_single_page_sidebar_layout', array( 'section' => 'audio_player_page_settings', 'type' => 'select', 'label' => __( 'Single Page Sidebar Position', 'audio-player' ), 'choices' => array( 'No Sidebar' => __( 'No Sidebar', 'audio-player' ), 'Right Side' => __( 'Right Side', 'audio-player' ), 'Left Side' => __( 'Left Side', 'audio-player' ), ) )); // Pro Version $wp_customize->add_setting( 'pro_version_single_page_setting', array( 'sanitize_callback' => 'Audio_Player_sanitize_custom_control' )); $wp_customize->add_control( new Audio_Player_Customize_Pro_Version ( $wp_customize,'pro_version_single_page_setting', array( 'section' => 'audio_player_page_settings', 'type' => 'pro_options', 'label' => esc_html__( 'Customizer Options', 'audio-player' ), 'description' => esc_url( AUDIO_PLAYER_URL ), 'priority' => 100 ))); } add_action('customize_register', 'audio_player_customize_register'); /** * Render the site title for the selective refresh partial. * * @return void */ function audio_player_customize_partial_blogname(){ bloginfo('name'); } /** * Render the site tagline for the selective refresh partial. * * @return void */ function audio_player_customize_partial_blogdescription(){ bloginfo('description'); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function audio_player_customize_preview_js(){ wp_enqueue_script('audio-player-customizer', esc_url(get_template_directory_uri()) . '/assets/js/customizer.js', array('customize-preview'), '20151215', true); } add_action('customize_preview_init', 'audio_player_customize_preview_js'); /* ** Load dynamic logic for the customizer controls area. */ function audio_player_panels_js() { wp_enqueue_style( 'audio-player-customizer-layout-css', get_theme_file_uri( '/assets/css/customizer-layout.css' ) ); wp_enqueue_script( 'audio-player-customize-layout', get_theme_file_uri( '/assets/js/customize-layout.js' ), array(), '1.2', true ); } add_action( 'customize_controls_enqueue_scripts', 'audio_player_panels_js' );