• I’m using Wu Wei theme, but want to know how to eliminate dates off posts so it looks more like a professional site that has static info?

Viewing 1 replies (of 1 total)
  • I haven’t worked with the theme you speak of before, however, in pretty much every theme I’ve edited in WordPress the class names of the dates for posts is always the same.

    I am not sure of your CSS styling ability so please forgive me if you know any of this.

    In your style.css of the theme you are using, open it and find either the class .entry-meta or .post-meta. These classes hold the author and the date. To hide them inside the brackets you put display: none;

    If you aren’t sure how to do that below is an example:

    .post-meta {
        display: none;
    }

    This is the easiest way to get rid of the unwanted content. I’m sure there are other ways do this. 🙂 But I hope this helps. If it doesn’t let me know.

    Thanks
    Megan

Viewing 1 replies (of 1 total)
  • The topic ‘How to eliminate dates off blog posts’ is closed to new replies.