Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BronsonQuick/2965104 to your computer and use it in GitHub Desktop.
Save BronsonQuick/2965104 to your computer and use it in GitHub Desktop.
Removes sections of the WordPress 3.4 Theme Customizer
<?php
/*
* Removes some of the theme customiser elements that we aren't using in this theme
*/
add_action ( 'customize_register', 'pico_themes_remove_theme_customiser_options');
function pico_themes_remove_theme_customiser_options( $controls ){
$controls->remove_section( 'title_tagline' );
$controls->remove_section( 'colors' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment