Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2799953
Hiding Post title
Closed

Comments

  • BrounHope started the conversation

    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

  •  2,495
    PenciDesign replied

    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:

    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.

  • BrounHope replied

    Great,

    That works perfectly.

    Thanks for responding so quickly.