Bump. So I think it may look something like this
function childtheme_override_postheader() {
global $post;
if ( is_404() || $post->post_type == 'page') {
$postheader = thematic_postheader_posttitle();
} else {
$postheader = thematic_postheader_postmeta() . thematic_postheader_posttitle();
}
echo apply_filters( 'thematic_postheader', $postheader ); // Filter to override default post header
}
but I found this from a different theme. I’m using genesis so I’d have to plug in my terms, which I think are
genesis_entry_header
genesis_post_info
genesis_post_meta
I’m not exactly sure what to plug and chug though. Please help, thanks!
[ No bumping please. ]