Skip to content

Instantly share code, notes, and snippets.

@scottnix
Created September 24, 2012 15:48
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 scottnix/3776638 to your computer and use it in GitHub Desktop.
Save scottnix/3776638 to your computer and use it in GitHub Desktop.
Thematic remove Header bits.
// remove header bits, previously this was done to Thematic itself, but you aren't suppose to do that, it is as simple as.
function childtheme_remove_headerbits() {
remove_action('thematic_header', 'thematic_blogtitle', 3);
remove_action('thematic_header', 'thematic_blogdescription', 5);
}
add_action('init', 'childtheme_remove_headerbits');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment