Created
June 21, 2012 10:51
-
-
Save BronsonQuick/2965104 to your computer and use it in GitHub Desktop.
Removes sections of the WordPress 3.4 Theme Customizer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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