Skip to content

Instantly share code, notes, and snippets.

@srikat
Last active August 29, 2015 14:25
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 srikat/537c2ef81ba0d68d9a0e to your computer and use it in GitHub Desktop.
Save srikat/537c2ef81ba0d68d9a0e to your computer and use it in GitHub Desktop.
// Customize entry meta in the entry footer
// http://my.studiopress.com/docs/shortcode-reference/#post-shortcodes
add_filter( 'genesis_post_meta', 'sp_post_meta_filter' );
function sp_post_meta_filter( $post_meta ) {
$post_meta = '[post_categories before="Filed Under: "] [post_tags before="Tagged: "]';
return $post_meta;
}
<span class="entry-categories">Filed Under: <a href="http://genesis.dev/category/category-1/" rel="category tag">Category #1</a>, <a href="http://genesis.dev/category/category-2/" rel="category tag">Category #2</a></span>
// Customize entry meta in the entry footer
// http://my.studiopress.com/docs/shortcode-reference/#post-shortcodes
add_filter( 'genesis_post_meta', 'sp_post_meta_filter' );
function sp_post_meta_filter( $post_meta ) {
$post_meta = '[post_categories_plus before="Filed Under: "] [post_tags before="Tagged: "]';
return $post_meta;
}
<span class="entry-categories">Filed Under: <a href="http://genesis.dev/category/category-1/" class="category-1" rel="category tag">Category #1</a>, <a href="http://genesis.dev/category/category-2/" class="category-2" rel="category tag">Category #2</a></span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment