Support › Forums › Feedback/Suggestion › Feature request: Hide Post Info and Intro text on mobile devices › Reply To: Feature request: Hide Post Info and Intro text on mobile devices
January 12, 2016 at 7:12 pm
#803
Moderator
To remove ‘author’ from default loop, you can output customized post info using following code in functions.php file (add it at bottom of the file)
//* Customize the post info function
add_filter( 'genesis_post_info', 'sp_post_info_filter' );
function sp_post_info_filter($post_info) {
if ( !is_page() ) {
$post_info = '[post_date] [post_comments] [post_edit]';
return $post_info;
}}