Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created December 11, 2016 22:55
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 braddalton/cfeb9ec8efaa59e95b6432bd6749e353 to your computer and use it in GitHub Desktop.
Save braddalton/cfeb9ec8efaa59e95b6432bd6749e353 to your computer and use it in GitHub Desktop.
Add Link In Genesis Entry Meta http://wp.me/p1lTu0-gGL
add_filter( 'genesis_post_info', 'sp_post_info_filter' );
function sp_post_info_filter($post_info) {
$post_info = '[post_date] by [post_author_posts_link] [post_comments] <a href="http://example.com/">Disclosure</a> [post_edit]';
return $post_info;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment