Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active August 29, 2015 13:56
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/8892882 to your computer and use it in GitHub Desktop.
Save wpspeak/8892882 to your computer and use it in GitHub Desktop.
Display custom tax in the entry footer (Genesis Framework - HTML5)
<?php
//* Display custom tax in the entry footer (Genesis Framework - HTML5)
add_filter( 'genesis_post_meta', 'afn_display_custom_tax' );
function afn_display_custom_tax($post_meta) {
$post_meta = '[post_terms taxonomy="type" before="Type: "]';
return $post_meta;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment