Skip to content

Instantly share code, notes, and snippets.

@anwerashif
Last active November 4, 2017 19:38
Show Gist options
  • Save anwerashif/ee10c6fae5e877b47ad6902f83e18106 to your computer and use it in GitHub Desktop.
Save anwerashif/ee10c6fae5e877b47ad6902f83e18106 to your computer and use it in GitHub Desktop.
Remove title/logo metabox from Genesis customizer
<?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