10, 'title' => esc_html__( 'Theme Settings', 'blogbit' ), 'description' => esc_html__( 'Theme Settings', 'blogbit' ), ] ); /*====================================== SECTIONS =======================================*/ // Section new \Kirki\Section( 'general_section_id', [ 'title' => esc_html__( 'General', 'blogbit' ), 'description' => esc_html__( 'General Section', 'blogbit' ), 'panel' => 'db_panel_id', 'priority' => 160, ] ); // Section new \Kirki\Section( 'typo_section_id', [ 'title' => esc_html__( 'Typography', 'blogbit' ), 'description' => esc_html__( 'Typography Section', 'blogbit' ), 'panel' => 'db_panel_id', 'priority' => 160, ] ); // Section // new \Kirki\Section( // 'header_topbar_section_id', // [ // 'title' => esc_html__( 'Header Topbar', 'blogbit' ), // 'description' => esc_html__( 'Header Topbar', 'blogbit' ), // 'panel' => 'db_panel_id', // 'priority' => 160, // ] // ); // Section new \Kirki\Section( 'menu_section_id', [ 'title' => esc_html__( 'Header Menu', 'blogbit' ), 'description' => esc_html__( 'Header Menu', 'blogbit' ), 'panel' => 'db_panel_id', 'priority' => 160, ] ); // Section new \Kirki\Section( 'banner_section_id', [ 'title' => esc_html__( 'Page Banner', 'blogbit' ), 'description' => esc_html__( 'Page Banner', 'blogbit' ), 'panel' => 'db_panel_id', 'priority' => 160, ] ); // Section new \Kirki\Section( 'sidebar_section_id', [ 'title' => esc_html__( 'Sidebars', 'blogbit' ), 'description' => esc_html__( 'Sidebars', 'blogbit' ), 'panel' => 'db_panel_id', 'priority' => 160, ] ); // Section new \Kirki\Section( 'blog_section_id', [ 'title' => esc_html__( 'Blog Page', 'blogbit' ), 'description' => esc_html__( 'Blog Page', 'blogbit' ), 'panel' => 'db_panel_id', 'priority' => 160, ] ); // Section new \Kirki\Section( 'blog_single_section', [ 'title' => esc_html__( 'Blog Single', 'blogbit' ), 'description' => esc_html__( 'Blog Single', 'blogbit' ), 'panel' => 'db_panel_id', 'priority' => 160, ] ); // Section new \Kirki\Section( 'footer_section_id', [ 'title' => esc_html__( 'Footer', 'blogbit' ), 'description' => esc_html__( 'Footer', 'blogbit' ), 'panel' => 'db_panel_id', 'priority' => 160, ] ); /*====================================== CONTROLS ==================================*/ get_template_part( 'core/customizer/options/option','general'); get_template_part( 'core/customizer/options/option','banner'); // get_template_part( 'core/customizer/options/option','topbar'); get_template_part( 'core/customizer/options/option','menu'); get_template_part( 'core/customizer/options/option','typo'); get_template_part( 'core/customizer/options/option','sidebar'); get_template_part( 'core/customizer/options/option','blog'); get_template_part( 'core/customizer/options/option','blogsingle'); get_template_part( 'core/customizer/options/option','footer'); }