Skip to content

Instantly share code, notes, and snippets.

@BFTrick
Created November 15, 2012 01:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BFTrick/4076105 to your computer and use it in GitHub Desktop.
Save BFTrick/4076105 to your computer and use it in GitHub Desktop.
Remove Blog Tagline & Rename Section in WordPress Theme Customizer
// remove control
$wp_customize->remove_control('blogdescription');
// rename existing section
$wp_customize->add_section( 'title_tagline' , array(
'title' => __('Site Title','mytheme'),
'priority' => 20,
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment