add_section( 'bizstrait_breadcrumb_setting', array( 'title' => esc_html__('Archive page title', 'bizstrait'), 'description' => esc_html__('Here you can set the prefix to the breadcrumb title for all Archive pages or can leave empty', 'bizstrait'), ) ); $wp_customize->add_setting( 'bizstrait_archive_prefix', array( 'default' => esc_html__('Archive:', 'bizstrait'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('bizstrait_archive_prefix', array( 'label' => esc_html__('Archive', 'bizstrait'), 'section' => 'bizstrait_breadcrumb_setting', 'type' => 'text' )); $wp_customize->add_setting( 'bizstrait_category_prefix', array( 'default' => esc_html__('Category:', 'bizstrait'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('bizstrait_category_prefix', array( 'label' => esc_html__('Category', 'bizstrait'), 'section' => 'bizstrait_breadcrumb_setting', 'type' => 'text' )); $wp_customize->add_setting( 'bizstrait_tag_prefix', array( 'default' => esc_html__('Tag:', 'bizstrait'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('bizstrait_tag_prefix', array( 'label' => esc_html__('Tag', 'bizstrait'), 'section' => 'bizstrait_breadcrumb_setting', 'type' => 'text' )); $wp_customize->add_setting( 'bizstrait_author_prefix', array( 'default' => esc_html__('All posts by:', 'bizstrait'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('bizstrait_author_prefix', array( 'label' => esc_html__('Author', 'bizstrait'), 'section' => 'bizstrait_breadcrumb_setting', 'type' => 'text' )); $wp_customize->add_setting( 'bizstrait_search_prefix', array( 'default' => esc_html__('Search results for:', 'bizstrait'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('bizstrait_search_prefix', array( 'label' => esc_html__('Search', 'bizstrait'), 'section' => 'bizstrait_breadcrumb_setting', 'type' => 'text' )); $wp_customize->add_setting( 'bizstrait_404_prefix', array( 'default' => esc_html__('404: Page not found', 'bizstrait'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('bizstrait_404_prefix', array( 'label' => esc_html__('404', 'bizstrait'), 'section' => 'bizstrait_breadcrumb_setting', 'type' => 'text' )); $wp_customize->add_setting( 'bizstrait_shop_prefix', array( 'default' => esc_html__('Shop', 'bizstrait'), 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('bizstrait_shop_prefix', array( 'label' => esc_html__('Shop', 'bizstrait'), 'section' => 'bizstrait_breadcrumb_setting', 'type' => 'text' )); } add_action('customize_register', 'bizstrait_customizer_breadcrumb');