Last active
December 10, 2015 04:28
-
-
Save GaryJones/4381292 to your computer and use it in GitHub Desktop.
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
<?php | |
add_filter( 'genesis_post_meta', 'post_meta_filter' ); | |
// Customize the post meta function | |
function post_meta_filter( $post_meta ) { | |
return '[post_categories before="Filed Under: "] [post_tags before="Tagged: "]'; | |
} | |
// Remove the post meta function | |
remove_action( 'genesis_after_post_content', 'genesis_post_meta' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment