Skip to content

Instantly share code, notes, and snippets.

@craigsimps
Created March 15, 2018 15:54
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 craigsimps/918203fd4220f12fd47919831a5bbb9c to your computer and use it in GitHub Desktop.
Save craigsimps/918203fd4220f12fd47919831a5bbb9c to your computer and use it in GitHub Desktop.
<?php
add_filter( 'genesis_post_info', __NAMESPACE__ . '\\post_info_filter' );
/**
* Filter the post info.
*
* @return string
*/
function post_info_filter() {
return '[post_date] by [post_author_posts_link] [post_comments] [post_edit]';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment