Home › Forums › WordPress Themes – Premium › Circumference › Removing Post Date and Author from Blog Posts › Reply To: Removing Post Date and Author from Blog Posts
January 22, 2015 at 5:50 am
#20927
Participant
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.