Site logo

Archived topic

Remove Post Dates On Selected Posts Only

5 replies · Started by JOHN on February 14, 2019

Viewing posts 1–6 of 6

What is the correct way to remove posts dates only on a few posts?

I am using the "marketer" theme library.
I use mostly posts and a few pages on my site. A few of my posts I would like the date not to show.

I have read in the forum of using CSS or using a filter.

What would you recommend?

How would I do it with CSS?

Would this work?

.entry-date {
display: none;
}

I just want to hide the date on 3 posts.

You would do this:

.postid-10 .posted-on,
.postid-20 .posted-on,
.postid-30 .posted-on {
    display: none;
}

You just need to update numbers with the actual IDs of the posts.

Thank you. that works.

You're welcome :)

This archived topic is closed to new replies.