Hide post date on homepage only

Hello,

I am looking to hide the post date (and possibly comment count) on the home page only.

I found this thread, but I think this will also hide it on the post itself, which I’m not sure that I want to do; my concern is removing the date as I have sticky posts that I want to be evergreen and not just look old.

https://colorlibsupport.com/t/i-want-to-display-comment-counts-only-on-single-post-and-at-the-homepage/

My site is www.howdareshe.org.

Thanks for your help!

Cheers,
Jessica

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the post date and comment area by going to Appearance > Customize > Additional CSS and pasting it there.

/*Remove post date*/
span.posted-on {
    display: none;
}

/*Remove comment count*/
span.comments {
    display: none;
}


Best Regards,
Support