This topic is: resolved
- This topic has 1 reply, 1 voice, and was last updated 3 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.
Community Forums › Forums › StudioPress Themes › Infinity Pro › Remove post date, author
Anyone have the css to remove the post date and author from the post?
https://workfromyourlaptop.comSo I found this css for removing the date. I decided to leave the author in the post as it was the dates I was most looking to remove.
This css can be added to the functions.php of the child theme.
add_filter( 'genesis_post_info', 'sp_post_info_filter' );
/**
* Customize entry meta in the entry header.
*
* @param string $post_info Existing post info
* @return Modified post info
*/
function sp_post_info_filter( $post_info ) {
$post_info = __( 'by', 'genesis' ) . ' [post_author_posts_link] [post_comments] [post_edit]';
return $post_info;
}
© 2025 WPEngine, Inc.