Skip to content

Instantly share code, notes, and snippets.

@alexmustin
Created October 3, 2018 19:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexmustin/08a420dbd17d3cb1d2fa5d0b701ccb31 to your computer and use it in GitHub Desktop.
Save alexmustin/08a420dbd17d3cb1d2fa5d0b701ccb31 to your computer and use it in GitHub Desktop.
WordPress Customizer - Remove existing Controls, Panels, and Sections
<?php
add_action( "customize_register", "am_customizer_mods" );
function am_customizer_mods( $wp_customize ) {
//* Remove 'header image' Control
$wp_customize->remove_control("header_image");
//* Remove 'widgets' Panel
$wp_customize->remove_panel("widgets");
//* Remove 'Colors' Section
$wp_customize->remove_section("colors");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment