remove_section('header_image'); $wp_customize->remove_section('background_image'); $wp_customize->remove_section('colors'); /** GENERAL SETTINGS **/ aleanta_customize_general_tab($wp_customize,'aleanta'); /** PAGE LOADER SETTINGS **/ aleanta_customize_page_loader_tab($wp_customize,'aleanta'); /** STYLE SECTION **/ aleanta_customize_style_tab($wp_customize, 'aleanta'); /** HEADER SECTION **/ aleanta_customize_header_tab($wp_customize,'aleanta'); /** RESPONSIVE SECTION **/ aleanta_customize_responsive_tab($wp_customize,'aleanta'); /** SEARCH SECTION **/ aleanta_customize_search_tab($wp_customize,'aleanta'); /** PAGE TITLE AND BREADCRUMBS SECTION **/ aleanta_customize_page_t_a_b_tab($wp_customize,'aleanta'); /** FOOTER SECTION **/ aleanta_customize_footer_tab($wp_customize,'aleanta'); /** SHOP SECTION **/ aleanta_customize_shop_tab($wp_customize,'aleanta'); /** PORTFOLIO SECTION **/ aleanta_customize_portfolio_tab($wp_customize, 'aleanta'); /** SERVICES SECTION **/ aleanta_customize_services_tab($wp_customize, 'aleanta'); /** BLOG SECTION **/ aleanta_customize_blog_tab($wp_customize,'aleanta'); /** SOCIAL SECTION **/ aleanta_customize_social_tab($wp_customize,'aleanta'); /** Remove unused sections */ $removedSections = apply_filters('aleanta_admin_customize_removed_sections', array('header_image','background_image')); foreach ($removedSections as $_sectionName){ $wp_customize->remove_section($_sectionName); } } add_action( 'customize_register', 'aleanta_customize_register' ); ?>