add_section( 'h1_settings', array( 'title' => __( 'H1 Settings (Content)', 'blossom-floral-pro' ), 'priority' => 15, 'panel' => 'typography_settings' ) ); /** H1 Font */ $wp_customize->add_setting( 'h1_font', array( 'default' => array( 'font-family' => 'Crimson Pro', 'variant' => 'regular', ), 'sanitize_callback' => array( 'Blossom_Floral_Pro_Fonts', 'sanitize_typography' ) ) ); $wp_customize->add_control( new Blossom_Floral_Pro_Typography_Control( $wp_customize, 'h1_font', array( 'label' => __( 'H1 Font', 'blossom-floral-pro' ), 'section' => 'h1_settings', ) ) ); /** Font Size*/ $wp_customize->add_setting( 'h1_font_size', array( 'default' => 46, 'sanitize_callback' => 'blossom_floral_pro_sanitize_number_absint' ) ); $wp_customize->add_control( new Blossom_Floral_Pro_Slider_Control( $wp_customize, 'h1_font_size', array( 'section' => 'h1_settings', 'label' => __( 'H1 Font Size', 'blossom-floral-pro' ), 'choices' => array( 'min' => 10, 'max' => 75, 'step' => 1, ) ) ) ); } add_action( 'customize_register', 'blossom_floral_pro_customize_register_typography_h1' );