Main Settings ]---*/ $wp_customize->add_section( 'general_settings', array( 'title' => __('General Settings', 'bloomy'), 'description' => __('General settings of the theme', 'bloomy'), 'priority' => 85, ) ); /*---[ General Settings -> Header ]---*/ $wp_customize->add_section( 'header_options', array( 'title' => __('Header', 'bloomy'), 'description' => __('Change settings of header of the theme', 'bloomy'), 'priority' => 98, ) ); /*---[ General Settings -> Footer ]---*/ $wp_customize->add_section( 'footer_options', array( 'title' => __('Footer', 'bloomy'), 'description' => __('Change settings of Footer of the theme', 'bloomy'), 'priority' => 99, ) ); /*---[ Post Options -> Post Meta ]---*/ $wp_customize->add_section( 'post_meta_options', array( 'title' => __('Post Meta', 'bloomy'), 'description' => __('Change settings related to post meta', 'bloomy'), 'priority' => 90, 'panel' => 'post_options', ) ); /*---[ Post Options -> Related Posts ]---*/ $wp_customize->add_section( 'related_posts_options', array( 'title' => __('Related Posts', 'bloomy'), 'description' => __('Show or hide related posts from here', 'bloomy'), 'priority' => 90, 'panel' => 'post_options', ) ); /*---[ Styling Options -> Color Scheme ]---*/ $wp_customize->add_section( 'color_scheme_section', array( 'title' => __('Color Scheme', 'bloomy'), 'description' => __('Change primary and secondary color scheme of the theme', 'bloomy'), 'priority' => 10, 'panel' => 'styling_options', ) ); /*---[ Styling Options -> Header ]---*/ $wp_customize->add_section( 'header_colors', array( 'title' => __('Header', 'bloomy'), 'description' => __('Change background and color options of header of the theme', 'bloomy'), 'priority' => 12, 'panel' => 'styling_options', ) ); /*---[ Styling Options -> Navigation Menu ]---*/ $wp_customize->add_section( 'nav_menu_colors', array( 'title' => __('Navigation Menu', 'bloomy'), 'description' => __('Change background and color options of navigation menu', 'bloomy'), 'priority' => 14, 'panel' => 'styling_options', ) ); /*---[ Styling Options -> Custom CSS ]---*/ $wp_customize->add_section( 'custom_css_section', array( 'title' => __('Custom CSS', 'bloomy'), 'description' => __('Add any custom CSS here to make custom color changes to theme', 'bloomy'), 'priority' => 16, 'panel' => 'styling_options', ) ); /*---[ Typography Options -> Body Font ]---*/ $wp_customize->add_section( 'body_font', array( 'title' => __('Body', 'bloomy'), 'description' => __('Change font properties of body of theme', 'bloomy'), 'priority' => 8, 'panel' => 'font_options', ) ); /*---[ Typography Options -> Logo Font ]---*/ $wp_customize->add_section( 'logo_font', array( 'title' => __('Logo', 'bloomy'), 'description' => __('Change font properties of logo', 'bloomy'), 'priority' => 10, 'panel' => 'font_options', ) ); /*---[ Typography Options -> Navigation Menu Font ]---*/ $wp_customize->add_section( 'nav_menu_font', array( 'title' => __('Navigation Menu', 'bloomy'), 'description' => __('Change font properties of navigation menu', 'bloomy'), 'priority' => 12, 'panel' => 'font_options', ) ); /*---[ Typography Options -> Headings Font ]---*/ $wp_customize->add_section( 'headings_font', array( 'title' => __('Headings', 'bloomy'), 'description' => __('Change font properties of headings. These settings applies to headings in posts and also to post titles of widgets and related posts', 'bloomy'), 'priority' => 14, 'panel' => 'font_options', ) ); /*---[ Typography Options -> Post: Entry Title Font ]---*/ $wp_customize->add_section( 'entry_title_font', array( 'title' => __(' Post: Entry Title', 'bloomy'), 'description' => __('Change font properties of entry title', 'bloomy'), 'priority' => 16, 'panel' => 'font_options', ) ); /*---[ Typography Options -> Post: Single Title Font ]---*/ $wp_customize->add_section( 'single_title_font', array( 'title' => __(' Post: Single Title', 'bloomy'), 'description' => __('Change font properties of single post title', 'bloomy'), 'priority' => 18, 'panel' => 'font_options', ) ); /*---[ Typography Options -> Post: Single Title Font ]---*/ $wp_customize->add_section( 'post_meta_font', array( 'title' => __(' Post: Meta', 'bloomy'), 'description' => __('Change font properties of post meta', 'bloomy'), 'priority' => 18, 'panel' => 'font_options', ) ); /*---[ Typography Options -> Post: Content Font ]---*/ $wp_customize->add_section( 'post_content_font', array( 'title' => __(' Post: Content', 'bloomy'), 'description' => __('Change font properties of post content', 'bloomy'), 'priority' => 20, 'panel' => 'font_options', ) ); /*---[ Typography Options -> Widgets Title Font ]---*/ $wp_customize->add_section( 'widgets_title_font', array( 'title' => __(' Widgets Title', 'bloomy'), 'description' => __('Change font properties of widget title', 'bloomy'), 'priority' => 22, 'panel' => 'font_options', ) ); /*---[ Layout Options -> General Layout Settings ]---*/ $wp_customize->add_section( 'general_layout_section', array( 'title' => __('General Layout Settings', 'bloomy'), 'description' => __('Change general layout settings of theme here', 'bloomy'), 'priority' => 8, 'panel' => 'layout_options', ) ); /*---[ Layout Options -> Main Layout ]---*/ $wp_customize->add_section( 'main_layout_section', array( 'title' => __('Main Layout', 'bloomy'), 'description' => __('Change layout of blog page of theme', 'bloomy'), 'priority' => 10, 'panel' => 'layout_options', ) ); /*---[ Layout Options -> Archive Layout ]---*/ $wp_customize->add_section( 'archive_layout_section', array( 'title' => __('Archive Layout', 'bloomy'), 'description' => __('Change layout of archive pages of theme', 'bloomy'), 'priority' => 12, 'panel' => 'layout_options', ) ); /*---[ Layout Options -> Archive Layout ]---*/ $wp_customize->add_section( 'single_layout_section', array( 'title' => __('Single Layout', 'bloomy'), 'description' => __('Change layout of single posts and pages of theme', 'bloomy'), 'priority' => 14, 'panel' => 'layout_options', ) ); /*---[ Layout Options -> Footer Columns ]---*/ $wp_customize->add_section( 'footer_columns_section', array( 'title' => __('Footer Columns', 'bloomy'), 'description' => __('Chose number of footer columns for theme', 'bloomy'), 'priority' => 16, 'panel' => 'layout_options', ) ); /*---[ Homepage -> Home Content ]---*/ $wp_customize->add_section( 'home_content_section', array( 'title' => __('Home Content', 'bloomy'), 'description' => __('Change settings for homepage content', 'bloomy'), 'priority' => 18, 'panel' => 'homepage_options', ) ); /*---[ Homepage -> Slider ]---*/ $wp_customize->add_section( 'slider_section', array( 'title' => __('Featured Slider', 'bloomy'), 'description' => __('Change settings for featured slider', 'bloomy'), 'priority' => 20, 'panel' => 'homepage_options', ) ); /*---[ Ad Management ]---*/ $wp_customize->add_section( 'ads_options', array( 'priority' => 108, 'theme_supports' => '', 'title' => __('Ad Management', 'bloomy'), 'description' => __('Here you can manage ads on your blog', 'bloomy'), ) ); /*---[ Social Profiles ]---*/ $wp_customize->add_section( 'social_profiles', array( 'title' => __('Social Profiles', 'bloomy'), 'description' => __('Here you can add links to your social profiles', 'bloomy'), 'priority' => 110, ) ); } add_action( 'customize_register', 'bloomy_register_theme_customizer_sections' ); ?>