Skip to content

Instantly share code, notes, and snippets.

  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save anonymous/7c137b8a353c3ccd0db5 to your computer and use it in GitHub Desktop.
add_filter( ‘genesis_post_meta’, ‘post_meta_filter’ );
function post_meta_filter($post_meta) {
if ( !is_page() ) {
$post_meta = ‘ [post_terms before="Age:" taxonomy="age"]<br/>
[post_terms before="Topics:" taxonomy="topics"]<br/>
[post_terms before="$taxon:" taxonomy="$taxon"]<br/>
[post_terms before="TFiled Under:" taxonomy="$taxon"]
‘;
return $post_meta;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment