Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active December 14, 2015 08:59
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/5061993 to your computer and use it in GitHub Desktop.
Save braddalton/5061993 to your computer and use it in GitHub Desktop.
Removes all the post meta from displaying on single posts but not archive pages.
add_filter( 'genesis_post_meta', 'remove_post_meta_single_posts' );
function remove_post_meta_single_posts( $post_meta ) {
if ( is_single() ) {
$post_meta = '[post_categories before="' . __( 'Filed Under: ', 'minimum' ) . '"] // [post_tags before="' . __( 'Tagged: ', 'minimum' ) . '"]';
return $post_meta;
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment