Is there any way to not show dates on the blog posts?

  • Unknown's avatar

    I would like to remove the date of the posts on my blog. In other words, I would just like a list of blog posts without the date of posting being shown. Is that possible?

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

  • You can hide the dates on blog posts with a bit of custom CSS (included in a Premium Plan or Business Plan).

    If you have that, then you can go to My Site > Customize > CSS and add the following to the code to hide the dates from the posts on your home page:

    .home .hentry .post-date {
        display:none;
    }

    If you also want to hide them from the individual blog posts, add this as well:

    .single .hentry .post-date {
        display:none;
    }
  • The topic ‘Is there any way to not show dates on the blog posts?’ is closed to new replies.