- This topic has 2 replies, 2 voices, and was last updated 4 years, 7 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Hide/Remove Author & Date’ is closed to new replies.
Tagged: meta data
Hi there,
Is there a way that an option or a code edit to hide the author and date meta data from posts?
Thank you!
Hi, add this to Customize > Additional CSS:
.single .entry-meta {
display: none;
}
.single .entry-footer > *:not(.cat-links):not(.tags-links) {
display: none;
}
That worked perfectly. Thank you!