How to hide date and author from posts in WordPress

You may want to hide author and date from posts in WordPress.

To hide these values, you can try to add custom CSS.

The following CSS will work:

.entry-meta span.byline {
display: none;
}

If it does not work, please try the following:

.entry-author-link,
.entry-permalink,
.entry-date,
.entry-meta {
display: none;
}

or

.entry-meta { display: none; }


Leave a Comment