get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; load_template( trailingslashit( get_template_directory() ) . '/inc/icon-picker.php' ); //Selective Refresh $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.logo .site-title a', 'render_callback' => 'anime_stream_Customize_partial_blogname', )); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => 'p.site-description', 'render_callback' => 'anime_stream_Customize_partial_blogdescription', )); // add home page setting pannel $wp_customize->add_panel( 'anime_stream_panel_id', array( 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => esc_html__( 'Homepage Settings', 'anime-stream' ), 'priority' => 10, )); //Menus Settings $wp_customize->add_section( 'anime_stream_menu_section' , array( 'title' => __( 'Menus Settings', 'anime-stream' ), 'panel' => 'anime_stream_panel_id' ) ); $wp_customize->add_setting('anime_stream_navigation_menu_font_size',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_navigation_menu_font_size',array( 'label' => __('Menus Font Size','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_menu_section', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_navigation_menu_font_weight',array( 'default' => 600, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_navigation_menu_font_weight',array( 'type' => 'select', 'label' => __('Menus Font Weight','anime-stream'), 'section' => 'anime_stream_menu_section', 'choices' => array( '100' => __('100','anime-stream'), '200' => __('200','anime-stream'), '300' => __('300','anime-stream'), '400' => __('400','anime-stream'), '500' => __('500','anime-stream'), '600' => __('600','anime-stream'), '700' => __('700','anime-stream'), '800' => __('800','anime-stream'), '900' => __('900','anime-stream'), ), ) ); $wp_customize->add_setting('anime_stream_menus_item_style',array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_menus_item_style',array( 'type' => 'select', 'section' => 'anime_stream_menu_section', 'label' => __('Menu Item Hover Style','anime-stream'), 'choices' => array( 'None' => __('None','anime-stream'), 'Zoom In' => __('Zoom In','anime-stream'), ), ) ); $wp_customize->add_setting('anime_stream_header_menus_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'anime_stream_header_menus_color', array( 'label' => __('Menus Color', 'anime-stream'), 'section' => 'anime_stream_menu_section', ))); $wp_customize->add_setting('anime_stream_header_menus_hover_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'anime_stream_header_menus_hover_color', array( 'label' => __('Menus Hover Color', 'anime-stream'), 'section' => 'anime_stream_menu_section', ))); $wp_customize->add_setting('anime_stream_header_submenus_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'anime_stream_header_submenus_color', array( 'label' => __('Sub Menus Color', 'anime-stream'), 'section' => 'anime_stream_menu_section', ))); $wp_customize->add_setting('anime_stream_header_submenus_hover_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'anime_stream_header_submenus_hover_color', array( 'label' => __('Sub Menus Hover Color', 'anime-stream'), 'section' => 'anime_stream_menu_section', ))); // Header $wp_customize->add_section( 'anime_stream_top_bar' , array( 'title' => esc_html__( 'Header', 'anime-stream' ), 'panel' => 'anime_stream_panel_id' ) ); $anime_stream_categories = get_categories(); $anime_stream_cat_choices = array('select' => 'Select Category'); foreach($anime_stream_categories as $category){ $anime_stream_cat_choices[$category->slug] = $category->name; } // Create three settings and controls for ($anime_stream_j = 1; $anime_stream_j <= 3; $anime_stream_j++) { $wp_customize->add_setting('anime_stream_header_top_category' .$anime_stream_j, array( 'default' => 'select', 'sanitize_callback' => 'anime_stream_sanitize_choices', )); $wp_customize->add_control('anime_stream_header_top_category' .$anime_stream_j, array( 'type' => 'select', 'choices' => $anime_stream_cat_choices, 'label' => __('Select Top Category', 'anime-stream'), 'section' => 'anime_stream_top_bar', )); } $wp_customize->add_setting( 'anime_stream_hide_show_library_btn',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_hide_show_library_btn',array( 'label' => esc_html__( 'Show / Hide Library Section','anime-stream' ), 'section' => 'anime_stream_top_bar' ))); // Button1 $wp_customize->add_setting('anime_stream_collection_button_text',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_collection_button_text',array( 'label' => esc_html__( 'Add Button Text', 'anime-stream' ), 'section' => 'anime_stream_top_bar', 'setting' => 'anime_stream_collection_button_text', 'type' => 'text', 'input_attrs' => array( 'placeholder' => __( 'My Collection', 'anime-stream' ), ), )); $wp_customize->add_setting('anime_stream_collection_button_url',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('anime_stream_collection_button_url',array( 'label' => esc_html__( 'Add Button URL', 'anime-stream' ), 'section' => 'anime_stream_top_bar', 'setting' => 'anime_stream_collection_button_url', 'type' => 'url', )); $wp_customize->add_setting('anime_stream_collection_button_icon',array( 'default' => 'fa-solid fa-file', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser($wp_customize,'anime_stream_collection_button_icon',array( 'label' => __('Add Button Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_top_bar', 'setting' => 'anime_stream_collection_button_icon', 'type' => 'icon' ))); // Button2 $wp_customize->add_setting('anime_stream_recent_button_text',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_recent_button_text',array( 'label' => esc_html__( 'Add Button Text', 'anime-stream' ), 'section' => 'anime_stream_top_bar', 'setting' => 'anime_stream_recent_button_text', 'type' => 'text', 'input_attrs' => array( 'placeholder' => __( 'Recents', 'anime-stream' ), ), )); $wp_customize->add_setting('anime_stream_recent_button_url',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('anime_stream_recent_button_url',array( 'label' => esc_html__( 'Add Button URL', 'anime-stream' ), 'section' => 'anime_stream_top_bar', 'setting' => 'anime_stream_recent_button_url', 'type' => 'url', )); $wp_customize->add_setting('anime_stream_recent_button_icon',array( 'default' => 'fa-solid fa-clock', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser($wp_customize,'anime_stream_recent_button_icon',array( 'label' => __('Add Button Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_top_bar', 'setting' => 'anime_stream_recent_button_icon', 'type' => 'icon' ))); // Button3 $wp_customize->add_setting('anime_stream_favourites_button_text',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_favourites_button_text',array( 'label' => esc_html__( 'Add Button Text', 'anime-stream' ), 'section' => 'anime_stream_top_bar', 'setting' => 'anime_stream_favourites_button_text', 'type' => 'text', 'input_attrs' => array( 'placeholder' => __( 'Favourites', 'anime-stream' ), ), )); $wp_customize->add_setting('anime_stream_favourites_button_url',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('anime_stream_favourites_button_url',array( 'label' => esc_html__( 'Add Button URL', 'anime-stream' ), 'section' => 'anime_stream_top_bar', 'setting' => 'anime_stream_favourites_button_url', 'type' => 'url', )); $wp_customize->add_setting('anime_stream_favourites_button_icon',array( 'default' => 'fa-solid fa-star', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser($wp_customize,'anime_stream_favourites_button_icon',array( 'label' => __('Add Button Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_top_bar', 'setting' => 'anime_stream_favourites_button_icon', 'type' => 'icon' ))); $wp_customize->add_setting('anime_stream_sign_in_button_text',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_sign_in_button_text',array( 'label' => esc_html__( 'Add Button Text', 'anime-stream' ), 'section' => 'anime_stream_top_bar', 'setting' => 'anime_stream_sign_in_button_text', 'type' => 'text', 'input_attrs' => array( 'placeholder' => __( 'Sign In / Sign Up', 'anime-stream' ), ), )); $wp_customize->add_setting('anime_stream_sign_in_button_url',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('anime_stream_sign_in_button_url',array( 'label' => esc_html__( 'Add Button URL', 'anime-stream' ), 'section' => 'anime_stream_top_bar', 'setting' => 'anime_stream_sign_in_button_url', 'type' => 'url', )); $wp_customize->add_setting('anime_stream_sign_in_button_icon',array( 'default' => 'fa-solid fa-user', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser($wp_customize,'anime_stream_sign_in_button_icon',array( 'label' => __('Add Button Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_top_bar', 'setting' => 'anime_stream_sign_in_button_icon', 'type' => 'icon' ))); //Slider $wp_customize->add_section( 'anime_stream_slider_section' , array( 'title' => __( 'Slider Settings', 'anime-stream' ), 'panel' => 'anime_stream_panel_id', ) ); $wp_customize->add_setting( 'anime_stream_hide_show_slider_section',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_hide_show_slider_section',array( 'label' => esc_html__( 'Show / Hide Slider Section','anime-stream' ), 'section' => 'anime_stream_slider_section' ))); $anime_stream_categories = get_categories(); $anime_stream_cat_post = array(); $anime_stream_cat_post[]= 'select'; $anime_stream_i = 0; foreach($anime_stream_categories as $anime_stream_category){ if($anime_stream_i==0){ $anime_stream_default = $anime_stream_category->slug; $anime_stream_i++; } $anime_stream_cat_post[$anime_stream_category->slug] = $anime_stream_category->name; } $wp_customize->add_setting('anime_stream_slider_category',array( 'default' => 'select', 'sanitize_callback' => 'anime_stream_sanitize_choices', )); $wp_customize->add_control('anime_stream_slider_category',array( 'type' => 'select', 'choices' => $anime_stream_cat_post, 'label' => __('Select Post Category','anime-stream'), 'section' => 'anime_stream_slider_section', )); // Top Charts Section $wp_customize->add_section('anime_stream_top_charts_section', array( 'title' => __('Top Charts Section', 'anime-stream'), 'panel' => 'anime_stream_panel_id', )); $wp_customize->add_setting( 'anime_stream_chart_section_hide_show',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_chart_section_hide_show',array( 'label' => esc_html__( 'Show / Hide Top Charts Section','anime-stream' ), 'section' => 'anime_stream_top_charts_section' ))); $wp_customize->add_setting('anime_stream_chart_section_title',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_chart_section_title',array( 'type' => 'text', 'label' => __('Add Section Title','anime-stream'), 'input_attrs' => array( 'placeholder' => __( 'Top Charts', 'anime-stream' ), ), 'section' => 'anime_stream_top_charts_section' )); $anime_stream_categories = get_categories(); $anime_stream_top_chart_cat = array(); $anime_stream_top_chart_cat[]= 'select'; $anime_stream_i = 0; foreach($anime_stream_categories as $anime_stream_category){ if($anime_stream_i==0){ $anime_stream_default = $anime_stream_category->slug; $anime_stream_i++; } $anime_stream_top_chart_cat[$anime_stream_category->slug] = $anime_stream_category->name; } $wp_customize->add_setting('anime_stream_top_chart_category',array( 'default' => 'select', 'sanitize_callback' => 'anime_stream_sanitize_choices', )); $wp_customize->add_control('anime_stream_top_chart_category',array( 'type' => 'select', 'choices' => $anime_stream_top_chart_cat, 'label' => __('Select Post Category','anime-stream'), 'section' => 'anime_stream_top_charts_section', )); // Right Sidebar Section $wp_customize->add_section('anime_stream_right_sidebar_section', array( 'title' => __('Right Sidebar Section', 'anime-stream'), 'panel' => 'anime_stream_panel_id', )); $wp_customize->add_setting( 'anime_stream_right_sidebar_hide_show',array( 'default' => 0, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_right_sidebar_hide_show',array( 'label' => esc_html__( 'Show / Hide Right Sidebar Section','anime-stream' ), 'section' => 'anime_stream_right_sidebar_section' ))); // Top cards Settings $wp_customize->add_setting('anime_stream_right_top_cards_title',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_right_top_cards_title',array( 'type' => 'text', 'label' => __('Add Section Title','anime-stream'), 'input_attrs' => array( 'placeholder' => __( 'Top Charts', 'anime-stream' ), ), 'section' => 'anime_stream_right_sidebar_section' )); $wp_customize->add_setting('anime_stream_select_cards_number',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field', )); $wp_customize->add_control('anime_stream_select_cards_number',array( 'label' => __('Number of post to show','anime-stream'), 'description' => __('Add number and refresh tab','anime-stream'), 'section' => 'anime_stream_right_sidebar_section', 'type' => 'number', 'input_attrs' => array( 'step' => 1, 'min' => 0, 'max' => 6, ) )); $anime_stream_featured_post = get_theme_mod('anime_stream_select_cards_number'); $anime_stream_args = array('numberposts' => -1); $anime_stream_post_list = get_posts($anime_stream_args); $anime_stream_i = 0; $anime_stream_pst[]='Select'; foreach($anime_stream_post_list as $anime_stream_post){ $anime_stream_pst[$anime_stream_post->ID] = $anime_stream_post->post_title; } for ( $anime_stream_i = 1; $anime_stream_i <= $anime_stream_featured_post; $anime_stream_i++ ) { $wp_customize->add_setting('anime_stream_select_card_name'.$anime_stream_i,array( 'sanitize_callback' => 'anime_stream_sanitize_choices', )); $wp_customize->add_control('anime_stream_select_card_name'.$anime_stream_i,array( 'type' => 'select', 'choices' => $anime_stream_pst, 'label' => __('Select Post','anime-stream'), 'section' => 'anime_stream_right_sidebar_section', )); $wp_customize->add_setting('anime_stream_add_card_text'.$anime_stream_i,array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_add_card_text'.$anime_stream_i,array( 'label' => esc_html__( 'Add Text', 'anime-stream' ), 'section' => 'anime_stream_right_sidebar_section', 'type' => 'text', 'input_attrs' => array( 'placeholder' => __( '3.3k watching', 'anime-stream' ), ), )); } // Top Charts Settings $wp_customize->add_setting('anime_stream_right_sidebar_title',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_right_sidebar_title',array( 'type' => 'text', 'label' => __('Add Section Title','anime-stream'), 'input_attrs' => array( 'placeholder' => __( 'Top Charts', 'anime-stream' ), ), 'section' => 'anime_stream_right_sidebar_section' )); for($anime_stream_i=1; $anime_stream_i<= 3; $anime_stream_i++) { $wp_customize->add_setting('anime_stream_top_charts_slider_img' . $anime_stream_i,array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control( new WP_Customize_Image_Control($wp_customize,'anime_stream_top_charts_slider_img' . $anime_stream_i,array( 'label' => __('Add Image','anime-stream'), 'section' => 'anime_stream_right_sidebar_section', 'description' => __('Image Size (290px × 150px).','anime-stream'), ))); } // Wallpaper Settings $wp_customize->add_setting('anime_stream_right_sidebar_wallpaper_title',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_right_sidebar_wallpaper_title',array( 'type' => 'text', 'label' => __('Add Section Title','anime-stream'), 'input_attrs' => array( 'placeholder' => __( 'Wallpaper', 'anime-stream' ), ), 'section' => 'anime_stream_right_sidebar_section' )); for($anime_stream_k=1; $anime_stream_k<= 3; $anime_stream_k++) { $wp_customize->add_setting('anime_stream_right_sidebar_wallpaper_img' . $anime_stream_k,array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control( new WP_Customize_Image_Control($wp_customize,'anime_stream_right_sidebar_wallpaper_img' . $anime_stream_k,array( 'label' => __('Add Image','anime-stream'), 'section' => 'anime_stream_right_sidebar_section', 'description' => __('Image Size (290px × 150px).','anime-stream'), ))); } $wp_customize->add_setting('anime_stream_gallery_button_text',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_gallery_button_text',array( 'label' => esc_html__( 'Add Button Text', 'anime-stream' ), 'section' => 'anime_stream_right_sidebar_section', 'setting' => 'anime_stream_gallery_button_text', 'type' => 'text', 'input_attrs' => array( 'placeholder' => __( 'Explore More', 'anime-stream' ), ), )); $wp_customize->add_setting('anime_stream_gallery_button_url',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control('anime_stream_gallery_button_url',array( 'label' => esc_html__( 'Add Button URL', 'anime-stream' ), 'section' => 'anime_stream_right_sidebar_section', 'setting' => 'anime_stream_gallery_button_url', 'type' => 'url', )); //Footer Text $wp_customize->add_section('anime_stream_footer',array( 'title' => esc_html__('Footer Settings','anime-stream'), 'panel' => 'anime_stream_panel_id', )); $wp_customize->add_setting( 'anime_stream_footer_hide_show',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_footer_hide_show',array( 'label' => esc_html__( 'Show / Hide Footer','anime-stream' ), 'section' => 'anime_stream_footer' ))); // font size $wp_customize->add_setting('anime_stream_button_footer_font_size',array( 'default'=> 25, 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_button_footer_font_size',array( 'label' => __('Footer Heading Font Size','anime-stream'), 'type' => 'number', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), 'section'=> 'anime_stream_footer', )); $wp_customize->add_setting('anime_stream_button_footer_heading_letter_spacing',array( 'default'=> 1, 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_button_footer_heading_letter_spacing',array( 'label' => __('Heading Letter Spacing','anime-stream'), 'type' => 'number', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), 'section'=> 'anime_stream_footer', )); // text trasform $wp_customize->add_setting('anime_stream_button_footer_text_transform',array( 'default'=> 'Capitalize', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_button_footer_text_transform',array( 'type' => 'radio', 'label' => __('Heading Text Transform','anime-stream'), 'choices' => array( 'Uppercase' => __('Uppercase','anime-stream'), 'Capitalize' => __('Capitalize','anime-stream'), 'Lowercase' => __('Lowercase','anime-stream'), ), 'section'=> 'anime_stream_footer', )); $wp_customize->add_setting('anime_stream_footer_heading_weight',array( 'default' => '500', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_footer_heading_weight',array( 'type' => 'select', 'label' => __('Heading Font Weight','anime-stream'), 'section' => 'anime_stream_footer', 'choices' => array( '100' => __('100','anime-stream'), '200' => __('200','anime-stream'), '300' => __('300','anime-stream'), '400' => __('400','anime-stream'), '500' => __('500','anime-stream'), '600' => __('600','anime-stream'), '700' => __('700','anime-stream'), '800' => __('800','anime-stream'), '900' => __('900','anime-stream'), ), ) ); $wp_customize->add_setting('anime_stream_footer_template',array( 'default' => esc_html('anime_stream-footer-one'), 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_footer_template',array( 'label' => esc_html__('Footer style','anime-stream'), 'section' => 'anime_stream_footer', 'setting' => 'anime_stream_footer_template', 'type' => 'select', 'choices' => array( 'anime_stream-footer-one' => esc_html__('Style 1', 'anime-stream'), 'anime_stream-footer-two' => esc_html__('Style 2', 'anime-stream'), 'anime_stream-footer-three' => esc_html__('Style 3', 'anime-stream'), 'anime_stream-footer-four' => esc_html__('Style 4', 'anime-stream'), 'anime_stream-footer-five' => esc_html__('Style 5', 'anime-stream'), ) )); $wp_customize->add_setting('anime_stream_footer_background_color', array( 'default' => '#FF640A', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'anime_stream_footer_background_color', array( 'label' => __('Footer Background Color', 'anime-stream'), 'section' => 'anime_stream_footer', ))); $wp_customize->add_setting('anime_stream_footer_background_image',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control( new WP_Customize_Image_Control($wp_customize,'anime_stream_footer_background_image',array( 'label' => __('Footer Background Image','anime-stream'), 'section' => 'anime_stream_footer' ))); $wp_customize->add_setting('anime_stream_footer_img_position',array( 'default' => 'center center', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_footer_img_position',array( 'type' => 'select', 'label' => __('Footer Image Position','anime-stream'), 'section' => 'anime_stream_footer', 'choices' => array( 'left top' => esc_html__( 'Top Left', 'anime-stream' ), 'center top' => esc_html__( 'Top', 'anime-stream' ), 'right top' => esc_html__( 'Top Right', 'anime-stream' ), 'left center' => esc_html__( 'Left', 'anime-stream' ), 'center center' => esc_html__( 'Center', 'anime-stream' ), 'right center' => esc_html__( 'Right', 'anime-stream' ), 'left bottom' => esc_html__( 'Bottom Left', 'anime-stream' ), 'center bottom' => esc_html__( 'Bottom', 'anime-stream' ), 'right bottom' => esc_html__( 'Bottom Right', 'anime-stream' ), ), )); // Footer $wp_customize->add_setting('anime_stream_img_footer',array( 'default'=> 'scroll', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_img_footer',array( 'type' => 'select', 'label' => __('Footer Background Attatchment','anime-stream'), 'choices' => array( 'fixed' => __('fixed','anime-stream'), 'scroll' => __('scroll','anime-stream'), ), 'section'=> 'anime_stream_footer', )); // footer padding $wp_customize->add_setting('anime_stream_footer_padding',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_footer_padding',array( 'label' => __('Footer Top Bottom Padding','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_footer', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_footer_widgets_heading',array( 'default' => 'Left', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_footer_widgets_heading',array( 'type' => 'select', 'label' => __('Footer Widget Heading','anime-stream'), 'section' => 'anime_stream_footer', 'choices' => array( 'Left' => __('Left','anime-stream'), 'Center' => __('Center','anime-stream'), 'Right' => __('Right','anime-stream') ), ) ); $wp_customize->add_setting('anime_stream_footer_widgets_content',array( 'default' => 'Left', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_footer_widgets_content',array( 'type' => 'select', 'label' => __('Footer Widget Content','anime-stream'), 'section' => 'anime_stream_footer', 'choices' => array( 'Left' => __('Left','anime-stream'), 'Center' => __('Center','anime-stream'), 'Right' => __('Right','anime-stream') ), ) ); //Selective Refresh $wp_customize->selective_refresh->add_partial('anime_stream_footer_text', array( 'selector' => '.copyright p', 'render_callback' => 'anime_stream_Customize_partial_anime_stream_footer_text', )); $wp_customize->add_setting('anime_stream_footer_text',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_footer_text',array( 'label' => esc_html__('Copyright Text','anime-stream'), 'input_attrs' => array( 'placeholder' => esc_html__( 'Copyright 2025, .....', 'anime-stream' ), ), 'section'=> 'anime_stream_footer', 'type'=> 'text' )); $wp_customize->add_setting( 'anime_stream_copyright_hide_show',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_copyright_hide_show',array( 'label' => esc_html__( 'Show / Hide Copyright','anime-stream' ), 'section' => 'anime_stream_footer' ))); $wp_customize->add_setting('anime_stream_copyright_alingment',array( 'default' => 'center', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control(new Anime_Stream_Image_Radio_Control($wp_customize, 'anime_stream_copyright_alingment', array( 'type' => 'select', 'label' => esc_html__('Copyright Alignment','anime-stream'), 'section' => 'anime_stream_footer', 'settings' => 'anime_stream_copyright_alingment', 'choices' => array( 'left' => esc_url(get_template_directory_uri()).'/assets/images/copyright1.png', 'center' => esc_url(get_template_directory_uri()).'/assets/images/copyright2.png', 'right' => esc_url(get_template_directory_uri()).'/assets/images/copyright3.png' )))); $wp_customize->add_setting('anime_stream_copyright_background_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'anime_stream_copyright_background_color', array( 'label' => __('Copyright Background Color', 'anime-stream'), 'section' => 'anime_stream_footer', ))); $wp_customize->add_setting('anime_stream_copyright_font_size',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_copyright_font_size',array( 'label' => __('Copyright Font Size','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_footer', 'type'=> 'text' )); $wp_customize->add_setting( 'anime_stream_hide_show_scroll',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_hide_show_scroll',array( 'label' => esc_html__( 'Show / Hide Scroll to Top','anime-stream' ), 'section' => 'anime_stream_footer' ))); //Selective Refresh $wp_customize->selective_refresh->add_partial('anime_stream_scroll_to_top_icon', array( 'selector' => '.scrollup i', 'render_callback' => 'anime_stream_Customize_partial_anime_stream_scroll_to_top_icon', )); $wp_customize->add_setting('anime_stream_scroll_top_alignment',array( 'default' => 'Right', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control(new Anime_Stream_Image_Radio_Control($wp_customize, 'anime_stream_scroll_top_alignment', array( 'type' => 'select', 'label' => esc_html__('Scroll To Top','anime-stream'), 'section' => 'anime_stream_footer', 'settings' => 'anime_stream_scroll_top_alignment', 'choices' => array( 'Left' => esc_url(get_template_directory_uri()).'/assets/images/layout1.png', 'Center' => esc_url(get_template_directory_uri()).'/assets/images/layout2.png', 'Right' => esc_url(get_template_directory_uri()).'/assets/images/layout3.png' )))); $wp_customize->add_setting('anime_stream_scroll_top_icon',array( 'default' => 'fas fa-long-arrow-alt-up', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser($wp_customize,'anime_stream_scroll_top_icon',array( 'label' => __('Add Scroll to Top Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_footer', 'setting' => 'anime_stream_scroll_top_icon', 'type' => 'icon' ))); $wp_customize->add_setting('anime_stream_scroll_to_top_font_size',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_scroll_to_top_font_size',array( 'label' => __('Icon Font Size','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_footer', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_scroll_to_top_padding',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_scroll_to_top_padding',array( 'label' => __('Icon Top Bottom Padding','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_footer', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_scroll_to_top_width',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_scroll_to_top_width',array( 'label' => __('Icon Width','anime-stream'), 'description' => __('Enter a value in pixels Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_footer', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_scroll_to_top_height',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_scroll_to_top_height',array( 'label' => __('Icon Height','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_footer', 'type'=> 'text' )); $wp_customize->add_setting( 'anime_stream_scroll_to_top_border_radius', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range' ) ); $wp_customize->add_control( 'anime_stream_scroll_to_top_border_radius', array( 'label' => esc_html__( 'Icon Border Radius','anime-stream' ), 'section' => 'anime_stream_footer', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); //Blog Post $wp_customize->add_panel( 'anime_stream_blog_post_parent_panel', array( 'title' => esc_html__( 'Blog Post Settings', 'anime-stream' ), 'panel' => 'anime_stream_panel_id', 'priority' => 20, )); // Add example section and controls to the middle (second) panel $wp_customize->add_section( 'anime_stream_post_settings', array( 'title' => esc_html__( 'Post Settings', 'anime-stream' ), 'panel' => 'anime_stream_blog_post_parent_panel', )); //Selective Refresh $wp_customize->selective_refresh->add_partial('anime_stream_toggle_postdate', array( 'selector' => '.post-main-box h2 a', 'render_callback' => 'anime_stream_Customize_partial_anime_stream_toggle_postdate', )); //Blog layout $wp_customize->add_setting('anime_stream_blog_layout_option',array( 'default' => 'Left', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control(new Anime_Stream_Image_Radio_Control($wp_customize, 'anime_stream_blog_layout_option', array( 'type' => 'select', 'label' => __('Blog Post Layouts','anime-stream'), 'section' => 'anime_stream_post_settings', 'choices' => array( 'Default' => esc_url(get_template_directory_uri()).'/assets/images/blog-layout1.png', 'Center' => esc_url(get_template_directory_uri()).'/assets/images/blog-layout2.png', 'Left' => esc_url(get_template_directory_uri()).'/assets/images/blog-layout3.png', )))); $wp_customize->add_setting('anime_stream_theme_options',array( 'default' => 'Right Sidebar', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_theme_options',array( 'type' => 'select', 'label' => esc_html__('Post Sidebar Layout','anime-stream'), 'description' => esc_html__('Here you can change the sidebar layout for posts. ','anime-stream'), 'section' => 'anime_stream_post_settings', 'choices' => array( 'Left Sidebar' => esc_html__('Left Sidebar','anime-stream'), 'Right Sidebar' => esc_html__('Right Sidebar','anime-stream'), 'One Column' => esc_html__('One Column','anime-stream'), 'Three Columns' => esc_html__('Three Columns','anime-stream'), 'Four Columns' => esc_html__('Four Columns','anime-stream'), 'Grid Layout' => esc_html__('Grid Layout','anime-stream') ), ) ); $wp_customize->add_setting('anime_stream_toggle_postdate_icon',array( 'default' => 'fas fa-calendar-alt', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_toggle_postdate_icon',array( 'label' => __('Add Post Date Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_post_settings', 'setting' => 'anime_stream_toggle_postdate_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_blog_toggle_postdate',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_blog_toggle_postdate',array( 'label' => esc_html__( 'Show / Hide Post Date','anime-stream' ), 'section' => 'anime_stream_post_settings' ))); $wp_customize->add_setting('anime_stream_toggle_author_icon',array( 'default' => 'fas fa-user', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_toggle_author_icon',array( 'label' => __('Add Author Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_post_settings', 'setting' => 'anime_stream_toggle_author_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_blog_toggle_author',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_blog_toggle_author',array( 'label' => esc_html__( 'Show / Hide Author','anime-stream' ), 'section' => 'anime_stream_post_settings' ))); $wp_customize->add_setting('anime_stream_toggle_comments_icon',array( 'default' => 'fa fa-comments', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_toggle_comments_icon',array( 'label' => __('Add Comments Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_post_settings', 'setting' => 'anime_stream_toggle_comments_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_blog_toggle_comments',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_blog_toggle_comments',array( 'label' => esc_html__( 'Show / Hide Comments','anime-stream' ), 'section' => 'anime_stream_post_settings' ))); $wp_customize->add_setting('anime_stream_toggle_time_icon',array( 'default' => 'fas fa-clock', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_toggle_time_icon',array( 'label' => __('Add Time Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_post_settings', 'setting' => 'anime_stream_toggle_time_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_blog_toggle_time',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_blog_toggle_time',array( 'label' => esc_html__( 'Show / Hide Time','anime-stream' ), 'section' => 'anime_stream_post_settings' ))); $wp_customize->add_setting( 'anime_stream_featured_image_hide_show',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_featured_image_hide_show', array( 'label' => esc_html__( 'Show / Hide Featured Image','anime-stream' ), 'section' => 'anime_stream_post_settings' ))); $wp_customize->add_setting( 'anime_stream_featured_image_border_radius', array( 'default' => '0', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range' ) ); $wp_customize->add_control( 'anime_stream_featured_image_border_radius', array( 'label' => esc_html__( 'Featured Image Border Radius','anime-stream' ), 'section' => 'anime_stream_post_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); $wp_customize->add_setting( 'anime_stream_featured_image_box_shadow', array( 'default' => '0', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range' ) ); $wp_customize->add_control( 'anime_stream_featured_image_box_shadow', array( 'label' => esc_html__( 'Featured Image Box Shadow','anime-stream' ), 'section' => 'anime_stream_post_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); //Featured Image $wp_customize->add_setting('anime_stream_blog_post_featured_image_dimension',array( 'default' => 'default', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_blog_post_featured_image_dimension',array( 'type' => 'select', 'label' => __('Blog Post Featured Image Dimension','anime-stream'), 'section' => 'anime_stream_post_settings', 'choices' => array( 'default' => __('Default','anime-stream'), 'custom' => __('Custom Image Size','anime-stream'), ), )); $wp_customize->add_setting('anime_stream_blog_post_featured_image_custom_width',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_blog_post_featured_image_custom_width',array( 'label' => __('Featured Image Custom Width','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ),), 'section'=> 'anime_stream_post_settings', 'type'=> 'text', 'active_callback' => 'anime_stream_blog_post_featured_image_dimension' )); $wp_customize->add_setting('anime_stream_blog_post_featured_image_custom_height',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_blog_post_featured_image_custom_height',array( 'label' => __('Featured Image Custom Height','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ),), 'section'=> 'anime_stream_post_settings', 'type'=> 'text', 'active_callback' => 'anime_stream_blog_post_featured_image_dimension' )); $wp_customize->add_setting( 'anime_stream_excerpt_number', array( 'default' => 30, 'type' => 'theme_mod', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range', 'sanitize_js_callback' => 'absint', ) ); $wp_customize->add_control( 'anime_stream_excerpt_number', array( 'label' => esc_html__( 'Excerpt length','anime-stream' ), 'section' => 'anime_stream_post_settings', 'type' => 'range', 'settings' => 'anime_stream_excerpt_number', 'input_attrs' => array( 'step' => 5, 'min' => 0, 'max' => 50, ), ) ); $wp_customize->add_setting('anime_stream_meta_field_separator',array( 'default'=> '|', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_meta_field_separator',array( 'label' => __('Add Meta Separator','anime-stream'), 'description' => __('Add the seperator for meta box. Example: "|", "/", etc.','anime-stream'), 'section'=> 'anime_stream_post_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_excerpt_settings',array( 'default' => 'Excerpt', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_excerpt_settings',array( 'type' => 'select', 'label' => esc_html__('Post Content','anime-stream'), 'section' => 'anime_stream_post_settings', 'choices' => array( 'Content' => esc_html__('Content','anime-stream'), 'Excerpt' => esc_html__('Excerpt','anime-stream'), 'No Content' => esc_html__('No Content','anime-stream') ), ) ); $wp_customize->add_setting('anime_stream_blog_page_posts_settings',array( 'default' => 'Into Blocks', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_blog_page_posts_settings',array( 'type' => 'select', 'label' => __('Display Blog Posts','anime-stream'), 'section' => 'anime_stream_post_settings', 'choices' => array( 'Into Blocks' => __('Into Blocks','anime-stream'), 'Without Blocks' => __('Without Blocks','anime-stream') ), ) ); $wp_customize->add_setting( 'anime_stream_blog_pagination_hide_show',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_blog_pagination_hide_show',array( 'label' => esc_html__( 'Show / Hide Blog Pagination','anime-stream' ), 'section' => 'anime_stream_post_settings' ))); $wp_customize->add_setting('anime_stream_blog_excerpt_suffix',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_blog_excerpt_suffix',array( 'label' => __('Add Excerpt Suffix','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '[...]', 'anime-stream' ), ), 'section'=> 'anime_stream_post_settings', 'type'=> 'text' )); $wp_customize->add_setting( 'anime_stream_blog_pagination_type', array( 'default' => 'blog-page-numbers', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control( 'anime_stream_blog_pagination_type', array( 'section' => 'anime_stream_post_settings', 'type' => 'select', 'label' => __( 'Blog Pagination', 'anime-stream' ), 'choices' => array( 'blog-page-numbers' => __( 'Numeric', 'anime-stream' ), 'next-prev' => __( 'Older Posts/Newer Posts', 'anime-stream' ), ))); // Button Settings $wp_customize->add_section( 'anime_stream_button_settings', array( 'title' => esc_html__( 'Button Settings', 'anime-stream' ), 'panel' => 'anime_stream_blog_post_parent_panel', )); //Selective Refresh $wp_customize->selective_refresh->add_partial('anime_stream_button_text', array( 'selector' => '.post-main-box .more-btn a', 'render_callback' => 'anime_stream_Customize_partial_anime_stream_button_text', )); $wp_customize->add_setting('anime_stream_button_text',array( 'default'=> esc_html__('Read More','anime-stream'), 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_button_text',array( 'label' => esc_html__('Add Button Text','anime-stream'), 'input_attrs' => array( 'placeholder' => esc_html__( 'Read More', 'anime-stream' ), ), 'section'=> 'anime_stream_button_settings', 'type'=> 'text' )); // font size button $wp_customize->add_setting('anime_stream_button_font_size',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_button_font_size',array( 'label' => __('Button Font Size','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'type' => 'text', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), 'section'=> 'anime_stream_button_settings', )); $wp_customize->add_setting( 'anime_stream_button_border_radius', array( 'default' => 5, 'type' => 'theme_mod', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range', 'sanitize_js_callback' => 'absint', ) ); $wp_customize->add_control( 'anime_stream_button_border_radius', array( 'label' => esc_html__( 'Button Border Radius','anime-stream' ), 'section' => 'anime_stream_button_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); // button padding $wp_customize->add_setting('anime_stream_button_top_bottom_padding',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_button_top_bottom_padding',array( 'label' => __('Button Top Bottom Padding','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_button_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_button_left_right_padding',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_button_left_right_padding',array( 'label' => __('Button Left Right Padding','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_button_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_button_letter_spacing',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_button_letter_spacing',array( 'label' => __('Button Letter Spacing','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'type' => 'text', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), 'section'=> 'anime_stream_button_settings', )); // text trasform $wp_customize->add_setting('anime_stream_button_text_transform',array( 'default'=> 'Capitalize', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_button_text_transform',array( 'type' => 'radio', 'label' => __('Button Text Transform','anime-stream'), 'choices' => array( 'Uppercase' => __('Uppercase','anime-stream'), 'Capitalize' => __('Capitalize','anime-stream'), 'Lowercase' => __('Lowercase','anime-stream'), ), 'section'=> 'anime_stream_button_settings', )); // Related Post Settings $wp_customize->add_section( 'anime_stream_related_posts_settings', array( 'title' => esc_html__( 'Related Posts Settings', 'anime-stream' ), 'panel' => 'anime_stream_blog_post_parent_panel', )); //Selective Refresh $wp_customize->selective_refresh->add_partial('anime_stream_related_post_title', array( 'selector' => '.related-post h3', 'render_callback' => 'anime_stream_Customize_partial_anime_stream_related_post_title', )); $wp_customize->add_setting( 'anime_stream_related_post',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_related_post',array( 'label' => esc_html__( 'Related Post','anime-stream' ), 'section' => 'anime_stream_related_posts_settings' ))); $wp_customize->add_setting('anime_stream_related_post_title',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_related_post_title',array( 'label' => esc_html__('Add Related Post Title','anime-stream'), 'input_attrs' => array( 'placeholder' => esc_html__( 'Related Post', 'anime-stream' ), ), 'section'=> 'anime_stream_related_posts_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_related_posts_count',array( 'default'=> 3, 'sanitize_callback' => 'anime_stream_sanitize_number_absint' )); $wp_customize->add_control('anime_stream_related_posts_count',array( 'label' => esc_html__('Add Related Post Count','anime-stream'), 'input_attrs' => array( 'placeholder' => esc_html__( '3', 'anime-stream' ), ), 'section'=> 'anime_stream_related_posts_settings', 'type'=> 'number' )); $wp_customize->add_setting( 'anime_stream_related_posts_excerpt_number', array( 'default' => 20, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range' ) ); $wp_customize->add_control( 'anime_stream_related_posts_excerpt_number', array( 'label' => esc_html__( 'Related Posts Excerpt length','anime-stream' ), 'section' => 'anime_stream_related_posts_settings', 'type' => 'range', 'settings' => 'anime_stream_related_posts_excerpt_number', 'input_attrs' => array( 'step' => 5, 'min' => 0, 'max' => 50, ), ) ); $wp_customize->add_setting( 'anime_stream_related_image_hide_show',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_related_image_hide_show', array( 'label' => esc_html__( 'Show / Hide Featured Image','anime-stream' ), 'section' => 'anime_stream_related_posts_settings' ))); $wp_customize->add_setting( 'anime_stream_related_toggle_postdate',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_related_toggle_postdate',array( 'label' => esc_html__( 'Show / Hide Post Date','anime-stream' ), 'section' => 'anime_stream_related_posts_settings' ))); $wp_customize->add_setting('anime_stream_related_postdate_icon',array( 'default' => 'fas fa-calendar-alt', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_related_postdate_icon',array( 'label' => __('Add Post Date Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_related_posts_settings', 'setting' => 'anime_stream_related_postdate_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_related_toggle_author',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_related_toggle_author',array( 'label' => esc_html__( 'Show / Hide Author','anime-stream' ), 'section' => 'anime_stream_related_posts_settings' ))); $wp_customize->add_setting('anime_stream_related_author_icon',array( 'default' => 'fas fa-user', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_related_author_icon',array( 'label' => __('Add Author Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_related_posts_settings', 'setting' => 'anime_stream_related_author_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_related_toggle_comments',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_related_toggle_comments',array( 'label' => esc_html__( 'Show / Hide Comments','anime-stream' ), 'section' => 'anime_stream_related_posts_settings' ))); $wp_customize->add_setting('anime_stream_related_comments_icon',array( 'default' => 'fa fa-comments', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_related_comments_icon',array( 'label' => __('Add Comments Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_related_posts_settings', 'setting' => 'anime_stream_related_comments_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_related_toggle_time',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_related_toggle_time',array( 'label' => esc_html__( 'Show / Hide Time','anime-stream' ), 'section' => 'anime_stream_related_posts_settings' ))); $wp_customize->add_setting('anime_stream_related_time_icon',array( 'default' => 'fas fa-clock', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_related_time_icon',array( 'label' => __('Add Time Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_related_posts_settings', 'setting' => 'anime_stream_related_time_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_related_image_box_shadow', array( 'default' => '0', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range' ) ); $wp_customize->add_control( 'anime_stream_related_image_box_shadow', array( 'label' => esc_html__( 'Related post Image Box Shadow','anime-stream' ), 'section' => 'anime_stream_related_posts_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); $wp_customize->add_setting('anime_stream_related_button_text',array( 'default'=> esc_html__('Read More','anime-stream'), 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_related_button_text',array( 'label' => esc_html__('Add Button Text','anime-stream'), 'input_attrs' => array( 'placeholder' => esc_html__( 'Read More', 'anime-stream' ), ), 'section'=> 'anime_stream_related_posts_settings', 'type'=> 'text' )); // Single Posts Settings $wp_customize->add_section( 'anime_stream_single_blog_settings', array( 'title' => __( 'Single Post Settings', 'anime-stream' ), 'panel' => 'anime_stream_blog_post_parent_panel', )); $wp_customize->add_setting('anime_stream_single_postdate_icon',array( 'default' => 'fas fa-calendar-alt', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_single_postdate_icon',array( 'label' => __('Add Post Date Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_single_blog_settings', 'setting' => 'anime_stream_single_postdate_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_single_postdate',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_single_postdate',array( 'label' => esc_html__( 'Show / Hide Date','anime-stream' ), 'section' => 'anime_stream_single_blog_settings' ))); $wp_customize->add_setting('anime_stream_single_author_icon',array( 'default' => 'fas fa-user', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_single_author_icon',array( 'label' => __('Add Author Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_single_blog_settings', 'setting' => 'anime_stream_single_author_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_single_author',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_single_author',array( 'label' => esc_html__( 'Show / Hide Author','anime-stream' ), 'section' => 'anime_stream_single_blog_settings' ))); $wp_customize->add_setting('anime_stream_single_comments_icon',array( 'default' => 'fa fa-comments', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_single_comments_icon',array( 'label' => __('Add Comments Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_single_blog_settings', 'setting' => 'anime_stream_single_comments_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_single_comments',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_single_comments',array( 'label' => esc_html__( 'Show / Hide Comments','anime-stream' ), 'section' => 'anime_stream_single_blog_settings' ))); $wp_customize->add_setting('anime_stream_single_time_icon',array( 'default' => 'fas fa-clock', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_single_time_icon',array( 'label' => __('Add Time Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_single_blog_settings', 'setting' => 'anime_stream_single_time_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_single_time',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_single_time',array( 'label' => esc_html__( 'Show / Hide Time','anime-stream' ), 'section' => 'anime_stream_single_blog_settings' ))); $wp_customize->add_setting( 'anime_stream_toggle_tags',array( 'default' => 0, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_toggle_tags', array( 'label' => esc_html__( 'Show / Hide Tags','anime-stream' ), 'section' => 'anime_stream_single_blog_settings' ))); // Single Posts Category $wp_customize->add_setting( 'anime_stream_single_post_category',array( 'default' => true, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_single_post_category',array( 'label' => esc_html__( 'Show / Hide Category','anime-stream' ), 'section' => 'anime_stream_single_blog_settings' ))); $wp_customize->add_setting( 'anime_stream_singlepost_image_box_shadow', array( 'default' => '0', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range' ) ); $wp_customize->add_control( 'anime_stream_singlepost_image_box_shadow', array( 'label' => esc_html__( 'Single post Image Box Shadow','anime-stream' ), 'section' => 'anime_stream_single_blog_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); $wp_customize->add_setting('anime_stream_single_post_meta_field_separator',array( 'default'=> '|', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_single_post_meta_field_separator',array( 'label' => __('Add Meta Separator','anime-stream'), 'description' => __('Add the seperator for meta box. Example: "|", "/", etc.','anime-stream'), 'section'=> 'anime_stream_single_blog_settings', 'type'=> 'text' )); $wp_customize->add_setting( 'anime_stream_single_blog_post_navigation_show_hide',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_single_blog_post_navigation_show_hide', array( 'label' => esc_html__( 'Show / Hide Post Navigation','anime-stream' ), 'section' => 'anime_stream_single_blog_settings' ))); //navigation text $wp_customize->add_setting('anime_stream_single_blog_prev_navigation_text',array( 'default'=> 'PREVIOUS', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_single_blog_prev_navigation_text',array( 'label' => __('Post Navigation Text','anime-stream'), 'input_attrs' => array( 'placeholder' => __( 'PREVIOUS', 'anime-stream' ), ), 'section'=> 'anime_stream_single_blog_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_single_blog_next_navigation_text',array( 'default'=> 'NEXT', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_single_blog_next_navigation_text',array( 'label' => __('Post Navigation Text','anime-stream'), 'input_attrs' => array( 'placeholder' => __( 'NEXT', 'anime-stream' ), ), 'section'=> 'anime_stream_single_blog_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_single_blog_comment_title',array( 'default'=> 'Leave a Reply', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_single_blog_comment_title',array( 'label' => __('Add Comment Title','anime-stream'), 'input_attrs' => array( 'placeholder' => __( 'Leave a Reply', 'anime-stream' ), ), 'section'=> 'anime_stream_single_blog_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_single_blog_comment_button_text',array( 'default'=> 'Post Comment', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_single_blog_comment_button_text',array( 'label' => __('Add Comment Button Text','anime-stream'), 'input_attrs' => array( 'placeholder' => __( 'Post Comment', 'anime-stream' ), ), 'section'=> 'anime_stream_single_blog_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_single_blog_comment_width',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_single_blog_comment_width',array( 'label' => __('Comment Form Width','anime-stream'), 'description' => __('Enter a value in %. Example:50%','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '100%', 'anime-stream' ), ), 'section'=> 'anime_stream_single_blog_settings', 'type'=> 'text' )); // Grid layout setting $wp_customize->add_section( 'anime_stream_grid_layout_settings', array( 'title' => __( 'Grid Layout Settings', 'anime-stream' ), 'panel' => 'anime_stream_blog_post_parent_panel', )); $wp_customize->add_setting('anime_stream_grid_postdate_icon',array( 'default' => 'fas fa-calendar-alt', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_grid_postdate_icon',array( 'label' => __('Add Post Date Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_grid_layout_settings', 'setting' => 'anime_stream_grid_postdate_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_grid_postdate',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_grid_postdate',array( 'label' => esc_html__( 'Show / Hide Post Date','anime-stream' ), 'section' => 'anime_stream_grid_layout_settings' ))); $wp_customize->add_setting('anime_stream_grid_author_icon',array( 'default' => 'fas fa-user', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_grid_author_icon',array( 'label' => __('Add Author Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_grid_layout_settings', 'setting' => 'anime_stream_grid_author_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_grid_author',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_grid_author',array( 'label' => esc_html__( 'Show / Hide Author','anime-stream' ), 'section' => 'anime_stream_grid_layout_settings' ))); $wp_customize->add_setting('anime_stream_grid_comments_icon',array( 'default' => 'fa fa-comments', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_grid_comments_icon',array( 'label' => __('Add Comments Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_grid_layout_settings', 'setting' => 'anime_stream_grid_comments_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_grid_time',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_grid_time',array( 'label' => esc_html__( 'Show / Hide Time','anime-stream' ), 'section' => 'anime_stream_grid_layout_settings' ))); $wp_customize->add_setting('anime_stream_grid_time_icon',array( 'default' => 'fas fa-clock', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new Anime_Stream_Fontawesome_Icon_Chooser( $wp_customize,'anime_stream_grid_time_icon',array( 'label' => __('Add Time Icon','anime-stream'), 'transport' => 'refresh', 'section' => 'anime_stream_grid_layout_settings', 'setting' => 'anime_stream_grid_time_icon', 'type' => 'icon' ))); $wp_customize->add_setting( 'anime_stream_grid_comments',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_grid_comments',array( 'label' => esc_html__( 'Show / Hide Comments','anime-stream' ), 'section' => 'anime_stream_grid_layout_settings' ))); $wp_customize->add_setting( 'anime_stream_grid_image_hide_show',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_grid_image_hide_show', array( 'label' => esc_html__( 'Show / Hide Featured Image','anime-stream' ), 'section' => 'anime_stream_grid_layout_settings' ))); $wp_customize->add_setting('anime_stream_grid_post_meta_field_separator',array( 'default'=> '|', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_grid_post_meta_field_separator',array( 'label' => __('Add Meta Separator','anime-stream'), 'description' => __('Add the seperator for meta box. Example: "|", "/", etc.','anime-stream'), 'section'=> 'anime_stream_grid_layout_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_display_grid_posts_settings',array( 'default' => 'Into Blocks', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_display_grid_posts_settings',array( 'type' => 'select', 'label' => __('Display Grid Posts','anime-stream'), 'section' => 'anime_stream_grid_layout_settings', 'choices' => array( 'Into Blocks' => __('Into Blocks','anime-stream'), 'Without Blocks' => __('Without Blocks','anime-stream') ), ) ); $wp_customize->add_setting('anime_stream_grid_button_text',array( 'default'=> esc_html__('Read More','anime-stream'), 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_grid_button_text',array( 'label' => esc_html__('Add Button Text','anime-stream'), 'input_attrs' => array( 'placeholder' => esc_html__( 'Read More', 'anime-stream' ), ), 'section'=> 'anime_stream_grid_layout_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_grid_excerpt_suffix',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_grid_excerpt_suffix',array( 'label' => __('Add Excerpt Suffix','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '[...]', 'anime-stream' ), ), 'section'=> 'anime_stream_grid_layout_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_grid_excerpt_settings',array( 'default' => 'Excerpt', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_grid_excerpt_settings',array( 'type' => 'select', 'label' => esc_html__('Grid Post Content','anime-stream'), 'section' => 'anime_stream_grid_layout_settings', 'choices' => array( 'Content' => esc_html__('Content','anime-stream'), 'Excerpt' => esc_html__('Excerpt','anime-stream'), 'No Content' => esc_html__('No Content','anime-stream') ), ) ); $wp_customize->add_setting( 'anime_stream_grid_featured_image_border_radius', array( 'default' => '0', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range' ) ); $wp_customize->add_control( 'anime_stream_grid_featured_image_border_radius', array( 'label' => esc_html__( 'Grid Featured Image Border Radius','anime-stream' ), 'section' => 'anime_stream_grid_layout_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); $wp_customize->add_setting( 'anime_stream_grid_featured_image_box_shadow', array( 'default' => '0', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range' ) ); $wp_customize->add_control( 'anime_stream_grid_featured_image_box_shadow', array( 'label' => esc_html__( 'Grid Featured Image Box Shadow','anime-stream' ), 'section' => 'anime_stream_grid_layout_settings', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); //Other $wp_customize->add_panel( 'anime_stream_other_parent_panel', array( 'title' => esc_html__( 'Other Settings', 'anime-stream' ), 'panel' => 'anime_stream_panel_id', 'priority' => 20, )); // Layout $wp_customize->add_section( 'anime_stream_left_right', array( 'title' => esc_html__('General Settings', 'anime-stream'), 'panel' => 'anime_stream_other_parent_panel' ) ); $wp_customize->add_setting('anime_stream_width_option',array( 'default' => 'Full Width', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control(new Anime_Stream_Image_Radio_Control($wp_customize, 'anime_stream_width_option', array( 'type' => 'select', 'label' => esc_html__('Width Layouts','anime-stream'), 'description' => esc_html__('Here you can change the width layout of Website.','anime-stream'), 'section' => 'anime_stream_left_right', 'choices' => array( 'Full Width' => esc_url(get_template_directory_uri()).'/assets/images/full-width.png', 'Wide Width' => esc_url(get_template_directory_uri()).'/assets/images/wide-width.png', 'Boxed' => esc_url(get_template_directory_uri()).'/assets/images/boxed-width.png', )))); $wp_customize->add_setting('anime_stream_page_layout',array( 'default' => 'One_Column', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_page_layout',array( 'type' => 'select', 'label' => esc_html__('Page Sidebar Layout','anime-stream'), 'description' => esc_html__('Here you can change the sidebar layout for pages. ','anime-stream'), 'section' => 'anime_stream_left_right', 'choices' => array( 'Left_Sidebar' => esc_html__('Left Sidebar','anime-stream'), 'Right_Sidebar' => esc_html__('Right Sidebar','anime-stream'), 'One_Column' => esc_html__('One Column','anime-stream') ), ) ); // Pre-Loader $wp_customize->add_setting( 'anime_stream_loader_enable',array( 'default' => 0, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_loader_enable',array( 'label' => esc_html__( 'Pre-Loader','anime-stream' ), 'section' => 'anime_stream_left_right' ))); $wp_customize->add_setting('anime_stream_preloader_bg_color', array( 'default' => '#FF640A', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'anime_stream_preloader_bg_color', array( 'label' => __('Pre-Loader Background Color', 'anime-stream'), 'section' => 'anime_stream_left_right', ))); $wp_customize->add_setting('anime_stream_preloader_border_color', array( 'default' => '#ffffff', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'anime_stream_preloader_border_color', array( 'label' => __('Pre-Loader Border Color', 'anime-stream'), 'section' => 'anime_stream_left_right', ))); $wp_customize->add_setting('anime_stream_preloader_bg_img',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', )); $wp_customize->add_control( new WP_Customize_Image_Control($wp_customize,'anime_stream_preloader_bg_img',array( 'label' => __('Preloader Background Image','anime-stream'), 'section' => 'anime_stream_left_right' ))); //404 Page Setting $wp_customize->add_section('anime_stream_404_page',array( 'title' => __('404 Page Settings','anime-stream'), 'panel' => 'anime_stream_other_parent_panel', )); $wp_customize->add_setting('anime_stream_404_page_title',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_404_page_title',array( 'label' => __('Add Title','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '404 Not Found', 'anime-stream' ), ), 'section'=> 'anime_stream_404_page', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_404_page_content',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_404_page_content',array( 'label' => __('Add Text','anime-stream'), 'input_attrs' => array( 'placeholder' => __( 'Looks like you have taken a wrong turn, Dont worry, it happens to the best of us.', 'anime-stream' ), ), 'section'=> 'anime_stream_404_page', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_404_page_button_text',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_404_page_button_text',array( 'label' => __('Add Button Text','anime-stream'), 'input_attrs' => array( 'placeholder' => __( 'Go Back', 'anime-stream' ), ), 'section'=> 'anime_stream_404_page', 'type'=> 'text' )); //No Result Page Setting $wp_customize->add_section('anime_stream_no_results_page',array( 'title' => __('No Results Page Settings','anime-stream'), 'panel' => 'anime_stream_other_parent_panel', )); $wp_customize->add_setting('anime_stream_no_results_page_title',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_no_results_page_title',array( 'label' => __('Add Title','anime-stream'), 'input_attrs' => array( 'placeholder' => __( 'Nothing Found', 'anime-stream' ), ), 'section'=> 'anime_stream_no_results_page', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_no_results_page_content',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_no_results_page_content',array( 'label' => __('Add Text','anime-stream'), 'input_attrs' => array( 'placeholder' => __( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'anime-stream' ), ), 'section'=> 'anime_stream_no_results_page', 'type'=> 'text' )); //Social Icon Setting $wp_customize->add_section('anime_stream_social_icon_settings',array( 'title' => __('Sidebar Social Icons Settings','anime-stream'), 'panel' => 'anime_stream_other_parent_panel', )); $wp_customize->add_setting('anime_stream_social_icon_font_size',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_social_icon_font_size',array( 'label' => __('Icon Font Size','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_social_icon_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_social_icon_padding',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_social_icon_padding',array( 'label' => __('Icon Padding','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_social_icon_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_social_icon_width',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_social_icon_width',array( 'label' => __('Icon Width','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_social_icon_settings', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_social_icon_height',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_social_icon_height',array( 'label' => __('Icon Height','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_social_icon_settings', 'type'=> 'text' )); //Responsive Media Settings $wp_customize->add_section('anime_stream_responsive_media',array( 'title' => esc_html__('Responsive Media','anime-stream'), 'panel' => 'anime_stream_other_parent_panel', )); $wp_customize->add_setting( 'anime_stream_responsive_preloader_hide',array( 'default' => false, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_responsive_preloader_hide',array( 'label' => esc_html__( 'Show / Hide Preloader','anime-stream' ), 'section' => 'anime_stream_responsive_media' ))); $wp_customize->add_setting( 'anime_stream_sidebar_hide_show',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_sidebar_hide_show',array( 'label' => esc_html__( 'Show / Hide Sidebar','anime-stream' ), 'section' => 'anime_stream_responsive_media' ))); $wp_customize->add_setting( 'anime_stream_resp_scroll_top_hide_show',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' )); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_resp_scroll_top_hide_show',array( 'label' => esc_html__( 'Show / Hide Scroll To Top','anime-stream' ), 'section' => 'anime_stream_responsive_media' ))); //Woocommerce settings $wp_customize->add_section('anime_stream_woocommerce_section', array( 'title' => __('WooCommerce Layout', 'anime-stream'), 'priority' => null, 'panel' => 'woocommerce', )); //Selective Refresh $wp_customize->selective_refresh->add_partial( 'anime_stream_woocommerce_shop_page_sidebar', array( 'selector' => '.post-type-archive-product #sidebar', 'render_callback' => 'anime_stream_customize_partial_anime_stream_woocommerce_shop_page_sidebar', ) ); //Woocommerce Shop Page Sidebar $wp_customize->add_setting( 'anime_stream_woocommerce_shop_page_sidebar',array( 'default' => 0, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_woocommerce_shop_page_sidebar',array( 'label' => esc_html__( 'Show / Hide Shop Page Sidebar','anime-stream' ), 'section' => 'anime_stream_woocommerce_section' ))); $wp_customize->add_setting('anime_stream_shop_page_layout',array( 'default' => 'Right Sidebar', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_shop_page_layout',array( 'type' => 'select', 'label' => __('Shop Page Sidebar Layout','anime-stream'), 'section' => 'anime_stream_woocommerce_section', 'choices' => array( 'Left Sidebar' => __('Left Sidebar','anime-stream'), 'Right Sidebar' => __('Right Sidebar','anime-stream'), ), ) ); //Selective Refresh $wp_customize->selective_refresh->add_partial( 'anime_stream_woocommerce_single_product_page_sidebar', array( 'selector' => '.single-product #sidebar', 'render_callback' => 'anime_stream_customize_partial_anime_stream_woocommerce_single_product_page_sidebar', ) ); //Woocommerce Single Product page Sidebar $wp_customize->add_setting( 'anime_stream_woocommerce_single_product_page_sidebar',array( 'default' => 0, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_woocommerce_single_product_page_sidebar',array( 'label' => esc_html__( 'Show / Hide Single Product Sidebar','anime-stream' ), 'section' => 'anime_stream_woocommerce_section' ))); $wp_customize->add_setting('anime_stream_single_product_layout',array( 'default' => 'Right Sidebar', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_single_product_layout',array( 'type' => 'select', 'label' => __('Single Product Sidebar Layout','anime-stream'), 'section' => 'anime_stream_woocommerce_section', 'choices' => array( 'Left Sidebar' => __('Left Sidebar','anime-stream'), 'Right Sidebar' => __('Right Sidebar','anime-stream'), ), ) ); //Products per page $wp_customize->add_setting('anime_stream_products_per_page',array( 'default'=> '9', 'sanitize_callback' => 'anime_stream_sanitize_float' )); $wp_customize->add_control('anime_stream_products_per_page',array( 'label' => __('Products Per Page','anime-stream'), 'description' => __('Display on shop page','anime-stream'), 'input_attrs' => array( 'step' => 1, 'min' => 0, 'max' => 50, ), 'section'=> 'anime_stream_woocommerce_section', 'type'=> 'number', )); //Products per row $wp_customize->add_setting('anime_stream_products_per_row',array( 'default'=> '4', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_products_per_row',array( 'label' => __('Products Per Row','anime-stream'), 'description' => __('Display on shop page','anime-stream'), 'choices' => array( '2' => '2', '3' => '3', '4' => '4', ), 'section'=> 'anime_stream_woocommerce_section', 'type'=> 'select', )); //Products padding $wp_customize->add_setting('anime_stream_products_padding_top_bottom',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_products_padding_top_bottom',array( 'label' => __('Products Padding Top Bottom','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_woocommerce_section', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_products_padding_left_right',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_products_padding_left_right',array( 'label' => __('Products Padding Left Right','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_woocommerce_section', 'type'=> 'text' )); //Products box shadow $wp_customize->add_setting( 'anime_stream_products_box_shadow', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range' ) ); $wp_customize->add_control( 'anime_stream_products_box_shadow', array( 'label' => esc_html__( 'Products Box Shadow','anime-stream' ), 'section' => 'anime_stream_woocommerce_section', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); //Products border radius $wp_customize->add_setting( 'anime_stream_products_border_radius', array( 'default' => '0', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range' ) ); $wp_customize->add_control( 'anime_stream_products_border_radius', array( 'label' => esc_html__( 'Products Border Radius','anime-stream' ), 'section' => 'anime_stream_woocommerce_section', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); $wp_customize->add_setting( 'anime_stream_products_button_border_radius', array( 'default' => '0', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range' ) ); $wp_customize->add_control( 'anime_stream_products_button_border_radius', array( 'label' => esc_html__( 'Products Button Border Radius','anime-stream' ), 'section' => 'anime_stream_woocommerce_section', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); $wp_customize->add_setting('anime_stream_products_btn_padding_top_bottom',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_products_btn_padding_top_bottom',array( 'label' => __('Products Button Padding Top Bottom','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_woocommerce_section', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_products_btn_padding_left_right',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_products_btn_padding_left_right',array( 'label' => __('Products Button Padding Left Right','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_woocommerce_section', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_woocommerce_sale_font_size',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_woocommerce_sale_font_size',array( 'label' => __('Sale Font Size','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_woocommerce_section', 'type'=> 'text' )); //Products Sale Badge $wp_customize->add_setting('anime_stream_woocommerce_sale_position',array( 'default' => 'right', 'sanitize_callback' => 'anime_stream_sanitize_choices' )); $wp_customize->add_control('anime_stream_woocommerce_sale_position',array( 'type' => 'select', 'label' => __('Sale Badge Position','anime-stream'), 'section' => 'anime_stream_woocommerce_section', 'choices' => array( 'left' => __('Left','anime-stream'), 'right' => __('Right','anime-stream'), ), ) ); $wp_customize->add_setting('anime_stream_woocommerce_sale_padding_top_bottom',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_woocommerce_sale_padding_top_bottom',array( 'label' => __('Sale Padding Top Bottom','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_woocommerce_section', 'type'=> 'text' )); $wp_customize->add_setting('anime_stream_woocommerce_sale_padding_left_right',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('anime_stream_woocommerce_sale_padding_left_right',array( 'label' => __('Sale Padding Left Right','anime-stream'), 'description' => __('Enter a value in pixels. Example:20px','anime-stream'), 'input_attrs' => array( 'placeholder' => __( '10px', 'anime-stream' ), ), 'section'=> 'anime_stream_woocommerce_section', 'type'=> 'text' )); $wp_customize->add_setting( 'anime_stream_woocommerce_sale_border_radius', array( 'default' => '0', 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_sanitize_number_range' ) ); $wp_customize->add_control( 'anime_stream_woocommerce_sale_border_radius', array( 'label' => esc_html__( 'Sale Border Radius','anime-stream' ), 'section' => 'anime_stream_woocommerce_section', 'type' => 'range', 'input_attrs' => array( 'step' => 1, 'min' => 1, 'max' => 50, ), ) ); // Related Product $wp_customize->add_setting( 'anime_stream_related_product_show_hide',array( 'default' => 1, 'transport' => 'refresh', 'sanitize_callback' => 'anime_stream_switch_sanitization' ) ); $wp_customize->add_control( new Anime_Stream_Toggle_Switch_Custom_Control( $wp_customize, 'anime_stream_related_product_show_hide',array( 'label' => esc_html__( 'Show / Hide Related product','anime-stream' ), 'section' => 'anime_stream_woocommerce_section' ))); } add_action( 'customize_register', 'anime_stream_customize_register' ); load_template( trailingslashit( get_template_directory() ) . '/inc/logo/logo-resizer.php' ); /** * Singleton class for handling the theme's customizer integration. * * @since 1.0.0 * @access public */ final class Anime_Stream_Customize { /** * Returns the instance. * * @since 1.0.0 * @access public * @return object */ public static function get_instance() { static $instance = null; if ( is_null( $instance ) ) { $instance = new self; $instance->setup_actions(); } return $instance; } /** * Constructor method. * * @since 1.0.0 * @access private * @return void */ private function __construct() {} /** * Sets up initial actions. * * @since 1.0.0 * @access private * @return void */ private function setup_actions() { // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ) ); // Register scripts and styles for the controls. add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ), 0 ); } /** * Sets up the customizer sections. * * @since 1.0.0 * @access public * @param object $manager * @return void */ public function sections( $manager ) { // Load custom sections. load_template( trailingslashit( get_template_directory() ) . '/inc/section-pro.php' ); // Register custom section types. $manager->register_section_type( 'Anime_Stream_Customize_Section_Pro' ); // Register sections. $manager->add_section( new Anime_Stream_Customize_Section_Pro( $manager,'anime_stream_go_pro', array( 'priority' => 1, 'title' => esc_html__( 'ANIME STREAM PRO', 'anime-stream' ), 'pro_text' => esc_html__( 'UPGRADE PRO', 'anime-stream' ), 'pro_url' => esc_url('https://www.vwthemes.com/products/anime-wordpress-theme'), ))); $manager->add_section(new Anime_Stream_Customize_Section_Pro($manager,'anime_stream_get_started_link',array( 'priority' => 1, 'title' => esc_html__( 'DOCUMENTATION', 'anime-stream' ), 'pro_text' => esc_html__( 'DOCS', 'anime-stream' ), 'pro_url' => esc_url('https://preview.vwthemesdemo.com/docs/free-vw-anime-stream/'), ))); } /** * Loads theme customizer CSS. * * @since 1.0.0 * @access public * @return void */ public function enqueue_control_scripts() { wp_enqueue_script( 'anime-stream-customize-controls', trailingslashit( get_template_directory_uri() ) . '/assets/js/customize-controls.js', array( 'customize-controls' ) ); wp_enqueue_style( 'anime-stream-customize-controls', trailingslashit( get_template_directory_uri() ) . '/assets/css/customize-controls.css' ); } } // Doing this customizer thang! Anime_Stream_Customize::get_instance();