BlueJPro,
This is ancient history, this thread, but I've got a specific question about the action hook you proposed. I have Dynamic Headers installed. I tried hacking this action hook into the header-extensions.php, the WRONG way ;), and it worked. But after removing it and putting it in the proper way, in the child theme functions.php, it's giving me trouble making that action hook work. I'm getting
"Parse error: syntax error, unexpected T_FUNCTION in /...path/wp-content/themes/thematic-two/functions.php on line xx" (specifics edited out for clarity)
I've used code almost identical to yours in the childtheme functions.php.
// Display dynamic header image
function dh_show() {
if(function_exists('show_media_header')) {
show_media_header();
}
}
add_action('thematic_header','dh_show',10);
Note: This code worked when placed improperly in header-extensions.php. According to my feeble understanding, it's not working in the child theme functions.php because maybe the function 'show_media_header()', created by the dynamic header plugin, hasn't loaded yet - but that could be all wrong.