Add following code snippet to your child theme’s functions.php and update the logic in my_post_info function according to your requirement.
1 2 3 4 5 6 7 8 |
add_filter('genesis_post_info', 'my_post_info'); function my_post_info() { $post_info = ''; if(get_post_type() != 'grid_products') { // do not display post info if post is of type grid_products $post_info = '[post_date] [post_comments] [post_edit]'; } return $post_info; } |