Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created March 1, 2013 02:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/5062014 to your computer and use it in GitHub Desktop.
Save braddalton/5062014 to your computer and use it in GitHub Desktop.
This code removes the post meta from displaying on the home page
add_action ( 'genesis_post_content' , 'remove_post_meta_home' );
function remove_post_meta_home() {
global $post;
if ( is_home () )
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