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/d7cb6a37a938f2804ec9 to your computer and use it in GitHub Desktop.
Save arupgsh/d7cb6a37a938f2804ec9 to your computer and use it in GitHub Desktop.
/** Customize the post header function by wptron */
add_filter('genesis_post_info', 'wpt_info_filter');
function wpt_info_filter($post_info) {
if (!is_page()) {
$post_info = 'Written by [post_author_posts_link] [post_comments] [post_edit]';
}
return $post_info;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment