Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created June 2, 2013 20:54
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 wpspeak/5694935 to your computer and use it in GitHub Desktop.
Save wpspeak/5694935 to your computer and use it in GitHub Desktop.
Remove tags from post meta in Genesis
<?php
//* Remove tags from post meta in Genesis
add_filter( 'genesis_post_meta', 'post_meta_filter' );
function post_meta_filter($post_meta) {
if ( !is_page() ) {
$post_meta = '[post_categories before="Filed Under: "]';
return $post_meta;
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment