Remove date from blog post
-
We would like to remove reference to the post date from our posts, since our posts are timely for several months at least. Is there code I can enter that removes this date? Thank you.
The blog I need help with is: (visible only to logged in users)
-
re: Wu Wei
All the metadata (date, categories and “leave a comment” link are under one selector in the CSS so it is all or nothing. The following is the “all.”
.post-metadata {
display: none;
}From https://en.forums.wordpress.com/topic/wu-wei-how-to-remove-the-date-from-posts?replies=4
-
The above reply is wrong. Add this in the CSS editor:
.timestamp { display: none; } .comment-bubble { margin-left: 0; }
- The topic ‘Remove date from blog post’ is closed to new replies.