Skip to content

Instantly share code, notes, and snippets.

@scottnix
Created October 21, 2012 02:52
Show Gist options
  • Select an option

  • Save scottnix/3925533 to your computer and use it in GitHub Desktop.

Select an option

Save scottnix/3925533 to your computer and use it in GitHub Desktop.
Swap Thematic Meta Data to be on top of Title.
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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment