Created
March 8, 2013 06:45
-
-
Save braddalton/5114654 to your computer and use it in GitHub Desktop.
Removes the post meta from after posts content and add the post meta before posts content. Also removes the post info.
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
/** Remove the post meta function */ | |
remove_action( 'genesis_after_post_content', 'genesis_post_meta' ); | |
/** Add the post meta function before posts*/ | |
add_action( 'genesis_before_post_content', 'genesis_post_meta' ); | |
/** Remove the post info function */ | |
remove_action( 'genesis_before_post_content', 'genesis_post_info' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment