• Candis

    (@thedreadedex)


    Hi,

    The website page I’m looking at is https://www.thedreadedex.com/truth/

    For certain posts I would like to have an image only. I installed the Hide Title plugin so that the title does not show up on the singular post page. However I don’t want the post showing up on the dynamic Blog Posts page either. Is there a way to remove the title from both the blog page AND the single post page for specific posts only?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi

    The absolute easiest way to do this is probably to just hide the titles with CSS. It looks like your theme supports post formats, so I’d recommend setting each of these image posts to a particular format that you’re not using for anything else (e.g. gallery) and then you can add CSS to hide the titles like so:

    article.format-gallery .post-title-wrapper {
      display: none;
    }

    That should hide it on all pages and you won’t need the Hide Title plugin.

    You can either add the CSS through your theme’s custom CSS setting field if it has one, or use a custom CSS plugin.

    Thread Starter Candis

    (@thedreadedex)

    That’s great. Thank you for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove single Post Title from Blog Page, not just Post Page’ is closed to new replies.