Last active
November 4, 2017 19:38
-
-
Save anwerashif/ee10c6fae5e877b47ad6902f83e18106 to your computer and use it in GitHub Desktop.
Remove title/logo metabox from Genesis 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 | |
// Do NOT include the opening PHP tag | |
/* | |
* Remove title/logo metabox from Genesis customizer | |
* See https://developer.wordpress.org/themes/advanced-topics/customizer-api/ | |
*/ | |
add_action( 'customize_register', 'es_theme_customize_register', 99 ); // Priority had to be last for this to work | |
function es_theme_customize_register( $wp_customize ) { | |
$wp_customize->remove_control('blog_title'); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment