Created
October 21, 2012 02:52
-
-
Save scottnix/3925533 to your computer and use it in GitHub Desktop.
Swap Thematic Meta Data to be on top of Title.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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