Skip to content

Instantly share code, notes, and snippets.

@jayshreehcl
Created June 15, 2013 03:19
Show Gist options
  • Save jayshreehcl/5786743 to your computer and use it in GitHub Desktop.
Save jayshreehcl/5786743 to your computer and use it in GitHub Desktop.
Ok if you want to reposition your post info or if you want to customize it then please check the code snippets I have shared below.
//* Modify Post Info In Genesis
add_filter( 'genesis_post_info', 'post_info_filter' );
function post_info_filter($post_info) {
$post_info = '[post_date] by [post_author_posts_link]';
return $post_info;
}
@jayshreehcl
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment