Get rid of the date on posts
-
How do I get rid of the date stamp on a post that I add?
The blog I need help with is: (visible only to logged in users)
-
First, I checked https://pittimarketing.wordpress.com/ and I don’t see any posts yet. Pages don’t’ have date stamps, so you might prefer setting a up static front page instead of using posts:
http://en.support.wordpress.com/pages/front-page/Or if you’re sticking with posts, you can hide things on a page using a “display: none” CSS rule. To figure out what selector to apply it to, you can use this method:
http://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/I used that and figured out that you can hide the entire post meta section (including the date and the author) for posts on the Twenty Ten theme by adding this example to your Appearance > Customize > CSS editor:
.entry-meta { display: none; }To hide the date and keep the author name (if that’s showing), replace “.entry-meta” with “.meta-prep, .entry-date”
- The topic ‘Get rid of the date on posts’ is closed to new replies.