Tagged: hide date author
Hey,
I was wondering how I can remove the author and date from the thumbnails on the homepage. I still want it to show on the posts itself but not on the thumbnail on the homepage. I only want to show my title there.
Thanks.
Sincerely,
Sander
Hi @sanderedk,
Please paste the below custom CSS code in Appearance > Customize > Additional CSS to hide the author and date from the thumbnails on the homepage.
.home .post-block .entry-meta:not(.category-meta) { display: none; } .home .post-block .entry-title, .home .featured-section .single-featured-post .post-block .entry-header .entry-title{ margin-bottom: 10px; }
Thanks
Hi Support team, how to remove date from all thumbnails ?
Hi @arjun-raut,
To remove the date of every post please go to ‘Appearance > Customize > Additional CSS’ and past the below code.
.entry-meta .date { display: none; }