add_panel( new ALAGU_WP_Customize_Panel( $wp_customize, 'site-typograpy-main-panel', array( 'title' => esc_html__('Site Typography', 'alagu'), 'priority' => 50 ) ) ); /** * H1 Section */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'site-h1-section', array( 'title' => esc_html__('H1', 'alagu'), 'panel' => 'site-typograpy-main-panel', 'priority' => 5, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/site-typography/h1.php'; /** * H2 Section */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'site-h2-section', array( 'title' => esc_html__('H2', 'alagu'), 'panel' => 'site-typograpy-main-panel', 'priority' => 10, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/site-typography/h2.php'; /** * H3 Section */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'site-h3-section', array( 'title' => esc_html__('H3', 'alagu'), 'panel' => 'site-typograpy-main-panel', 'priority' => 15, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/site-typography/h3.php'; /** * H4 Section */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'site-h4-section', array( 'title' => esc_html__('H4', 'alagu'), 'panel' => 'site-typograpy-main-panel', 'priority' => 20, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/site-typography/h4.php'; /** * H5 Section */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'site-h5-section', array( 'title' => esc_html__('H5', 'alagu'), 'panel' => 'site-typograpy-main-panel', 'priority' => 25, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/site-typography/h5.php'; /** * H6 Section */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'site-h6-section', array( 'title' => esc_html__('H6', 'alagu'), 'panel' => 'site-typograpy-main-panel', 'priority' => 30, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/site-typography/h6.php'; /** * Extra Section */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'site-extra-font-section', array( 'title' => esc_html__('Extra', 'alagu'), 'panel' => 'site-typograpy-main-panel', 'priority' => 35, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/site-typography/extra.php'; /** * Footer Panel */ $wp_customize->add_panel( new ALAGU_WP_Customize_Panel( $wp_customize, 'site-footer-main-panel', array( 'title' => esc_html__('Footer', 'alagu'), 'panel' => 'site-typograpy-main-panel', 'priority' => 40 ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/site-typography/footer-title.php'; require_once ALAGU_THEME_DIR .'/inc/customizer/settings/site-typography/footer-content.php'; /** * Custom Fonts */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'site-custom-font-main-panel', array( 'title' => esc_html__('Custom Fonts', 'alagu'), 'panel' => 'site-typograpy-main-panel', 'priority' => 45 ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/site-typography/custom-fonts.php';