Last active
December 14, 2015 08:59
-
-
Save braddalton/5062043 to your computer and use it in GitHub Desktop.
This code removes the post meta on all single posts
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
| add_action ( 'genesis_post_content' , 'remove_post_meta_single_posts' ); | |
| function remove_post_meta_single_posts) { | |
| global $post; | |
| if ( is_single () ) | |
| remove_action( 'genesis_after_post_content', 'genesis_post_meta' ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment