Support › Forums › Flex Theme › Removing date stamp for posts › Reply To: Removing date stamp for posts
October 18, 2015 at 3:09 am
#605
Moderator
*It is recommended to backup before making any changes*
Add following code at the end of functions.php 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_author_posts_link] [post_comments] [post_edit]';
return $post_info;
}}