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

    The easiest solution would be to hide the featured image using css.

    Add the below css code to the Appearance > Customize > Additional CSS:

    body.single-post .site-content > article > .thumbnail {
        display: none;
    }

    What the css does:
    It css selector targets the body tag that has the ‘.single-post’ class which is applied only in Blog Posts, after that it targets the ‘thumbnail’ and hides.

    Best Regards,
    Enamul Hoque Mohon

    Thread Starter dosniner

    (@dosniner)

    thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Featured image from the BLOG POST content’ is closed to new replies.