add_section( 'beauty-studio-related-posts', array( 'capability' => 'edit_theme_options', 'title' => esc_html__( 'Single Post Related Post Options', 'beauty-studio' ), 'panel' => 'beauty-studio-single-post' ) ); /*show related posts*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-show-related]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-show-related'], 'sanitize_callback' => 'beauty_studio_sanitize_checkbox' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-show-related]', array( 'label' => esc_html__( 'Show Related Posts In Single Post', 'beauty-studio' ), 'section' => 'beauty-studio-related-posts', 'settings' => 'beauty_studio_theme_options[beauty-studio-show-related]', 'type' => 'checkbox' ) ); /*Related title*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-related-title]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-related-title'], 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-related-title]', array( 'label' => esc_html__( 'Related Posts title', 'beauty-studio' ), 'section' => 'beauty-studio-related-posts', 'settings' => 'beauty_studio_theme_options[beauty-studio-related-title]', 'type' => 'text' ) ); /*Select number of columns */ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-related-posts-column-number]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-related-posts-column-number'], 'sanitize_callback' => 'sanitize_text_field' ) ); $choices = beauty_studio_related_posts_layout(); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-related-posts-column-number]', array( 'choices' => $choices, 'label' => esc_html__( 'Select Number Of Columns ', 'beauty-studio' ), 'section' => 'beauty-studio-related-posts', 'settings' => 'beauty_studio_theme_options[beauty-studio-related-posts-column-number]', 'type' => 'select' ) ); /*Related posts number*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-related-posts-number]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-related-posts-number'],/*3*/ 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-related-posts-number]', array( 'label' => esc_html__( 'Number of posts to show', 'beauty-studio' ), 'section' => 'beauty-studio-related-posts', 'settings' => 'beauty_studio_theme_options[beauty-studio-related-posts-number]', 'type' => 'number' ) ); /*blog content from*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-related-content-from]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-related-content-from'], 'sanitize_callback' => 'beauty_studio_sanitize_select' ) ); $choices = beauty_studio_blog_archive_content_from(); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-related-content-from]', array( 'choices' => $choices, 'label' => esc_html__( 'Blog/Archive Content From', 'beauty-studio' ), 'section' => 'beauty-studio-related-posts', 'settings' => 'beauty_studio_theme_options[beauty-studio-related-content-from]', 'type' => 'select' ) ); /*Excerpt Length*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-related-excerpt-length]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-related-excerpt-length'], 'sanitize_callback' => 'absint' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-related-excerpt-length]', array( 'label' => esc_html__( 'Except Length', 'beauty-studio' ), 'section' => 'beauty-studio-related-posts', 'settings' => 'beauty_studio_theme_options[beauty-studio-related-excerpt-length]', 'type' => 'number', 'active_callback' => 'beauty_studio_active_callback_content_from_excerpt' ) ); /*blog layout*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-related-img-size]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-related-img-size'], 'sanitize_callback' => 'beauty_studio_sanitize_select' ) ); $choices = beauty_studio_get_image_sizes_options(1); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-related-img-size]', array( 'choices' => $choices, 'label' => esc_html__( 'Image Size', 'beauty-studio' ), 'section' => 'beauty-studio-related-posts', 'settings' => 'beauty_studio_theme_options[beauty-studio-related-img-size]', 'type' => 'select' ) ); /*Related posts show cats*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-related-posts-show-cats]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-related-posts-show-cats'], 'sanitize_callback' => 'beauty_studio_sanitize_checkbox' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-related-posts-show-cats]', array( 'label' => esc_html__( 'Show Cats', 'beauty-studio' ), 'section' => 'beauty-studio-related-posts', 'settings' => 'beauty_studio_theme_options[beauty-studio-related-posts-show-cats]', 'type' => 'checkbox' ) ); /*Related posts show date*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-related-posts-show-date]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-related-posts-show-date'], 'sanitize_callback' => 'beauty_studio_sanitize_checkbox' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-related-posts-show-date]', array( 'label' => esc_html__( 'Show Date', 'beauty-studio' ), 'section' => 'beauty-studio-related-posts', 'settings' => 'beauty_studio_theme_options[beauty-studio-related-posts-show-date]', 'type' => 'checkbox' ) ); /*Related posts show author*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-related-posts-show-author]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-related-posts-show-author'], 'sanitize_callback' => 'beauty_studio_sanitize_checkbox', ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-related-posts-show-author]', array( 'label' => esc_html__( 'Show Author', 'beauty-studio' ), 'section' => 'beauty-studio-related-posts', 'settings' => 'beauty_studio_theme_options[beauty-studio-related-posts-show-author]', 'type' => 'checkbox' ) ); /*Related title*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-related-read-more-text]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-related-read-more-text'], 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-related-read-more-text]', array( 'label' => esc_html__( 'Read More Text', 'beauty-studio' ), 'section' => 'beauty-studio-related-posts', 'settings' => 'beauty_studio_theme_options[beauty-studio-related-read-more-text]', 'type' => 'text' ) );