Skip to content

Instantly share code, notes, and snippets.

@GaryJones
Last active December 10, 2015 04:28
Show Gist options
  • Save GaryJones/4381292 to your computer and use it in GitHub Desktop.
Save GaryJones/4381292 to your computer and use it in GitHub Desktop.
<?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