Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created February 28, 2013 18:19
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/5058886 to your computer and use it in GitHub Desktop.
Save braddalton/5058886 to your computer and use it in GitHub Desktop.
Remove the posts meta like tagged with and filed under on the home page or front page.
add_action( ‘genesis_before’, ‘remove_post_meta_home_page’ );
function remove_post_meta_home_page() {
if( is_home() || is_front_page() ) {
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