How to hide post title

Hello, just wanna know how can I hide all post titles?
THX

original message from “how to hide category” topic.

Hi @tomtom,

I hope you are well today and thank you for your question.

You can try achieving this by using the following CSS code on your site using this plugin Simple Custom CSS – WordPress plugin | WordPress.org

body.single-post .pinbin-copy h1,
body.archive .pinbin-copy h2,
body.blog .pinbin-copy h2 {
    display: none;
}

Best Regards,
Movin

I implemented this on my site, but every post is getting a “00” instead of the post title. Any ideas how to get rid of this?

@painted Could you please share me your site URL where it’s happening so that i can troubleshoot it?

Sure, it’s http://wtf-se.com/

@painted You can remove that by using the below custom CSS code.


#post-area .post .pinbin-copy > p {
    display: none;
}

#post-area .post .pinbin-copy > p.pinbin-link {
    display: block;
}

Thanks so much!

You are always welcome here :slight_smile: