Comments 2BrounHope started the conversationJune 11, 2021 at 10:57amIs there an option to hide the title of a post.I don't want to hide ALL post titles, just one particular post.Thanks 2,615PenciDesign repliedJune 11, 2021 at 12:06pmHi, By default, there's no option to disable post titles for a particular post, but you can disable by adding some CSS to Appearance > Customize > Custom CSS: article#post-279 .entry-title { display: none; } In case you want to hide on a single post only: body.single article#post-279 .entry-title { display: none; } In case you want to hide the post title on a single post and apply to all posts: body.single article .entry-title { display: none; } Change 279 to the post ID you want to hide. If you can't find your post ID, please read this article for instruction: https://www.wpbeginner.com/beginners-guide/how-to-find-post-category-tag-comments-or-user-id-in-wordpress/ Regards,PenciDesign. 2BrounHope repliedJune 11, 2021 at 1:10pmGreat,That works perfectly.Thanks for responding so quickly. Sign in to reply ...
Is there an option to hide the title of a post.
I don't want to hide ALL post titles, just one particular post.
Thanks
Hi,
By default, there's no option to disable post titles for a particular post, but you can disable by adding some CSS to Appearance > Customize > Custom CSS:
In case you want to hide on a single post only:
In case you want to hide the post title on a single post and apply to all posts:
Change 279 to the post ID you want to hide. If you can't find your post ID, please read this article for instruction: https://www.wpbeginner.com/beginners-guide/how-to-find-post-category-tag-comments-or-user-id-in-wordpress/
Regards,
PenciDesign.
Great,
That works perfectly.
Thanks for responding so quickly.