Hello,
Just started using Thematic, great work. I have a question though. It seems like all the childtheme_overrides in the thematic_header hook have the add_action in the wrong place in the conditional statement. For example, here is the code for childtheme_override_brandingclose():
if (function_exists('childtheme_override_brandingclose')) {
function thematic_brandingclose() {
childtheme_override_brandingclose();
}
} else {
function thematic_brandingclose() {
echo "\t\t</div><!-- #branding -->\n";
}
add_action('thematic_header','thematic_brandingclose',7);
}
Is this done on purpose? If so, how do I add the hook correctly in my own function. I have tried both add_action('thematic_header', 'thematic_brandingclose', 7); and add_action('thematic_header', 'childtheme_override_brandingclose', 7); in my child theme's functions.php file. Both ways seem to not execute what I put in the function. Thanks for the help.
function childtheme_override_brandingclose() {
echo "\t\t</div><!-- #branding -->\n";
add_action('themeatic_header', 'thematic_brandingclose', 7);
}