Home › Forums › WordPress Themes – Premium › Circumference › Removing Post Date and Author from Blog Posts
Is there an way to remove the Post Date and Author from both individual blog posts and the list of blog posts on the Blog page in Circumference?
Thanks,
Bill
Hi Bill, You could put the following css into your child theme css file to hide the post date and author.
span.posted-on { display: none; } span.byline { display: none; }
Thanks.
That was exactly what I needed to add for all of my evergreen content. Appreciate the quick reply.