Skip to content

Instantly share code, notes, and snippets.

@Temmyhlee
Created August 30, 2016 19:28
Show Gist options
  • Save Temmyhlee/8841a34b77892c814544b9d3d483ee1c to your computer and use it in GitHub Desktop.
Save Temmyhlee/8841a34b77892c814544b9d3d483ee1c to your computer and use it in GitHub Desktop.
Change post meta Filed under to Category
// Customize the post meta function
add_filter( 'genesis_post_meta', 'post_meta_filter' );
function post_meta_filter( $post_meta ) {
if ( is_single() ) {
// change the category and tags to anything you like
$post_meta = '[post_tags sep=", " before="' . __( 'Tags:', 'temmyhlee' ) . ' "] [post_categories sep=", " before="' . __( 'Category:', 'temmyhlee' ) . ' "]';
return $post_meta;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment