Skip to content

Instantly share code, notes, and snippets.

@justadityaraj
Last active June 26, 2019 19:30
Show Gist options
  • Save justadityaraj/07dfad4bb9ff033ba2734f93734507ad to your computer and use it in GitHub Desktop.
Save justadityaraj/07dfad4bb9ff033ba2734f93734507ad to your computer and use it in GitHub Desktop.
<?php
//* REMOVE THE <?php ABOVE BEFORE PASTING INTO functions.php
//* Customize Entry Meta Filed Under and Tagged Under
add_filter( 'genesis_post_meta', 'ig_entry_meta_footer' );
function ig_entry_meta_footer( $post_meta ) {
$post_meta = '[post_categories before="Category: "] [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