Created
June 8, 2017 09:44
-
-
Save topleague/d6f6d8fa52b56570f98e3777cde453f6 to your computer and use it in GitHub Desktop.
Customize Entry Meta (Filed Under and Tagged Under)
This file contains 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 | |
add_filter( 'genesis_post_meta', 'sleek_pro_meta_footer' ); | |
function sleek_pro_meta_footer( $post_meta ) { | |
$post_meta = '[post_categories before=""] [post_tags before=""]'; | |
return $post_meta; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment