Home Forums WordPress Themes – Premium Circumference Removing Post Date and Author from Blog Posts Reply To: Removing Post Date and Author from Blog Posts

#20927
Shekhar Bhandari
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.