OK. got it. Sorry for deleting the bloated code, did it before i read your reply.
Here it is on a diet. I didn't know that about not having to add the action but of course it makes sense, it's built into the conditional syntax in header-extensions.php.
Anything else I could pare out of here?
I started with the childtheme_override_access() because the mobile childtheme does indeed override thematic_access() and i wanted them to be similar. Unnecessary here though.
// Let's add those mobile navmenus
function register_mobile_navmenus() {
if (function_exists( 'register_nav_menus' )) {
register_nav_menus(
array(
'primary-menu' => __( 'Masthead Navigation', 'thematic' ), 'mobile-menu' => __( 'Mobile Navigation', 'thematic')) );
}
}
add_action('init', 'register_mobile_navmenus');
// HEADER ACTIONS, Nimmo style.
function remove_defaults() {
remove_action('thematic_header','thematic_brandingopen',1);
remove_action('thematic_header','thematic_access',9);
}
add_action('init','remove_defaults');
add_action('thematic_header','thematic_access',1);
add_action('thematic_header','thematic_brandingopen',2);
// Open #branding and add the branding image this way
// In the header div
function childtheme_override_brandingopen() {
echo '<div id="branding"><a href="' . home_url() . '"><img src="/mistersaturdaynight/wp-content/uploads/header-images/WP9-winter.png"></a>';
}
// Dis the blog title
// In the header div
function childtheme_override_blogtitle() { }
// Dis the blog description
// In the header div
function childtheme_override_blogdescription() { }
// End of functions that hook into thematic_header()