By default, whatever is set as the Blog Description in Settings...General gets output as an H1. In addition, by default, a Page's title is output as an H1. Net effect is two H1 tags on any Page. Baaad Wordpress.
I'm just trying to remove the Blog Description H1 from each Page. So to my child theme's functions.php I added:
function remove_parts() {
if (is_page()) {
remove_action('thematic_header','thematic_blogdescription',5);
}
}
add_action('init', 'remove_parts');
However, is_page() seems to be always empty/false. Am I going about this the wrong way? Thanks for the help.
-Brandon