• Skip to primary navigation
  • Skip to main content

Genesis Community

Resources for Genesis WordPress Theme Users

  • Facebook
  • Twitter
  • Slack
  • Wiki
  • Login
You are here: Home / Wikis / WordPress / Remove Customizer Options

Remove Customizer Options

// Remove genesis customizer options
add_action( 'customize_register', 'prefix_remove_genesis_options', 15 );
function prefix_remove_genesis_options( $wp_customize ) {

    $wp_customize->remove_control( 'blog_title' );
    $wp_customize->remove_section( 'genesis_header' );
    $wp_customize->remove_section( 'genesis_comments' );
    $wp_customize->remove_section( 'genesis_layout' );
    $wp_customize->remove_section( 'genesis_adsense' );
    $wp_customize->remove_section( 'genesis_breadcrumbs' );
    $wp_customize->remove_section( 'genesis_archives' );
    $wp_customize->remove_section( 'genesis_scripts' );
    $wp_customize->remove_panel( 'genesis-seo' );

}

Source: https://codex.wordpress.org/Class_Reference/WP_Customize_Manager/remove_section

Posted by: Patrick Boehner Category: WordPress Tags: customizer

« Check if a page is a Sub Page
Remove Widgets »

Copyright © 2026 · Genesis Sample on Genesis Framework · WordPress · Log in