Removing Dates from Blog Posts

  • Hi, does anybody know how I can hide all the dates/times on my blog posts. It’s not just removing the info from new posts, I’d like to be able to remove from everything I’ve posted to date.
    I’m a novice, so if you can help please explain as if you’re talking to a three year old
    Thanks in advance!
    Jennifer :)

    The blog I need help with is: (visible only to logged in users)

  • Hi, I see you have the following CSS, which removes all the meta data (tags, categories, etc.

    .entry-meta {
        display: none;
    }

    If you wish to hide only dates and times, change the above to the following.

    .entry-date {
        display: none;
    }
  • The topic ‘Removing Dates from Blog Posts’ is closed to new replies.