Modify Meta Info in Entry Header
To modify the meta info in entry header when using the Genesis Framework, you can use this snippet:
add_filter( 'genesis_post_info', 'snippet_post_info_filter' );
function snippet_post_info_filter($post_info) {
$post_info = '[[post_date]] by [[post_author_posts_link]] [[post_comments]] [[post_edit]]';
return $post_info;
}