Created
May 25, 2015 07:04
-
-
Save idavinder/70b4adfbd6b2fed05536 to your computer and use it in GitHub Desktop.
Customize Filed Under & Tagged With in Genesis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* Customize Entry Meta Filed Under and Tagged Under - http://www.basicwp.com/?p=268 | |
add_filter( 'genesis_post_meta', 'ig_entry_meta_footer' ); | |
function ig_entry_meta_footer( $post_meta ) { | |
$post_meta = '[post_categories before="Categories: "] [post_tags before="Tags: "]'; | |
return $post_meta; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment