Show post info for blog only
// Show post info for blog only
add_filter( 'genesis_post_info', 'show_post_info_blog' );
function show_post_info_blog($post_info) {
if ( is_category( 'blog' ) ) {
$post_info = '[post_date] by [post_author_posts_link] [post_comments]';
return $post_info;
}}