Created
September 24, 2012 15:48
-
-
Save scottnix/3776638 to your computer and use it in GitHub Desktop.
Thematic remove Header bits.
This file contains 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
// 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