Skip to content

Instantly share code, notes, and snippets.

@arupgsh
Last active February 17, 2018 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arupgsh/f4319a57db15a4a05502 to your computer and use it in GitHub Desktop.
Save arupgsh/f4319a57db15a4a05502 to your computer and use it in GitHub Desktop.
/** Customize the post footer function by wptron */
add_filter('genesis_post_meta', 'wpt_info_filter');
function wpt_info_filter($entry_footer) {
if (!is_page()) {
$entry_footer = '[post_categories]';
}
return $entry_footer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment