Typography * * @uses $wp_customize->add_section() https://developer.wordpress.org/reference/classes/wp_customize_manager/add_section/ * @since 1.0.0 */ $wp_customize->add_section( new Blogbuster_Customize_Section ( $wp_customize, 'blogbuster_section_typography', array( 'priority' => 30, 'panel' => 'blogbuster_panel_general', 'title' => __( 'Typography', 'blogbuster' ), ) ) ); /** * Body Typography Section * * General Settings > Typography > Body * * @since 1.0.0 */ $wp_customize->add_section( new Blogbuster_Customize_Section( $wp_customize, 'blogbuster_section_typography_body', array( 'priority' => 10, 'panel' => 'blogbuster_panel_general', 'section' => 'blogbuster_section_typography', 'title' => __( 'Body', 'blogbuster' ) ) ) ); /** * Typography Font filed for body typography * * General Settings > Typography > Body * * @since 1.0.0 */ $wp_customize->add_setting( 'blogbuster_body_font_family', array( 'default' => blogbuster_get_customizer_default( 'blogbuster_body_font_family' ), 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_setting( 'blogbuster_body_font_weight', array( 'default' => blogbuster_get_customizer_default( 'blogbuster_body_font_weight' ), 'sanitize_callback' => 'sanitize_key', 'transport' => 'postMessage' ) ); $wp_customize->add_setting( 'blogbuster_body_font_style', array( 'default' => blogbuster_get_customizer_default( 'blogbuster_body_font_style' ), 'sanitize_callback' => 'sanitize_text_field', 'transport' => 'postMessage' ) ); $wp_customize->add_setting( 'blogbuster_body_font_transform', array( 'default' => blogbuster_get_customizer_default( 'blogbuster_body_font_transform' ), 'transport' => 'postMessage', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_setting( 'blogbuster_body_font_decoration', array( 'default' => blogbuster_get_customizer_default( 'blogbuster_body_font_decoration' ), 'transport' => 'postMessage', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new Blogbuster_Control_Typography ( $wp_customize, 'body_typography', array( 'priority' => 10, 'section' => 'blogbuster_section_typography_body', 'settings' => array( 'family' => 'blogbuster_body_font_family', 'weight' => 'blogbuster_body_font_weight', 'style' => 'blogbuster_body_font_style', 'transform' => 'blogbuster_body_font_transform', 'decoration' => 'blogbuster_body_font_decoration' ), 'description' => __( 'Choose how you want the body font to appear.', 'blogbuster' ), 'l10n' => array() // Pass custom labels. Use the setting key (above) for the specific label. ) ) ); /** * Heading Typography Section * * General Settings > Typography > Heading * * @since 1.0.0 */ $wp_customize->add_section( new Blogbuster_Customize_Section( $wp_customize, 'blogbuster_section_typography_heading', array( 'priority' => 20, 'panel' => 'blogbuster_panel_general', 'section' => 'blogbuster_section_typography', 'title' => __( 'Heading', 'blogbuster' ) ) ) ); /** * Typography Font filed for heading typography * * General Settings > Typography > Heading * * @since 1.0.0 */ $wp_customize->add_setting( 'blogbuster_heading_font_family', array( 'default' => blogbuster_get_customizer_default( 'blogbuster_heading_font_family' ), 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_setting( 'blogbuster_heading_font_weight', array( 'default' => blogbuster_get_customizer_default( 'blogbuster_heading_font_weight' ), 'sanitize_callback' => 'sanitize_key', 'transport' => 'postMessage' ) ); $wp_customize->add_setting( 'blogbuster_heading_font_style', array( 'default' => blogbuster_get_customizer_default( 'blogbuster_heading_font_style' ), 'sanitize_callback' => 'sanitize_text_field', 'transport' => 'postMessage' ) ); $wp_customize->add_setting( 'blogbuster_heading_font_transform', array( 'default' => blogbuster_get_customizer_default( 'blogbuster_heading_font_transform' ), 'transport' => 'postMessage', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_setting( 'blogbuster_heading_font_decoration', array( 'default' => blogbuster_get_customizer_default( 'blogbuster_heading_font_decoration' ), 'transport' => 'postMessage', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new Blogbuster_Control_Typography ( $wp_customize, 'heading_typography', array( 'priority' => 10, 'section' => 'blogbuster_section_typography_heading', 'settings' => array( 'family' => 'blogbuster_heading_font_family', 'weight' => 'blogbuster_heading_font_weight', 'style' => 'blogbuster_heading_font_style', 'transform' => 'blogbuster_heading_font_transform', 'decoration' => 'blogbuster_heading_font_decoration' ), 'description' => __( 'Choose how you want the header font to appear.', 'blogbuster' ), 'l10n' => array() // Pass custom labels. Use the setting key (above) for the specific label. ) ) ); /** * Upgrade field for typography section * * General Settings > Typography * * @since 1.0.0 */ $wp_customize->add_setting( 'blogbuster_upgrade_typogrpahy', array( 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( new Blogbuster_Control_Upgrade( $wp_customize, 'blogbuster_upgrade_typogrpahy', array( 'priority' => 70, 'section' => 'blogbuster_section_typography', 'settings' => 'blogbuster_upgrade_typogrpahy', 'label' => __( 'More Options with Blogbuster Pro', 'blogbuster' ), 'choices' => blogbuster_upgrade_choices( 'blogbuster_typography' ) ) ) ); } endif;