• after adding content to any page, once I add a FEATURED IMAGE, it displays as the first thing on the page; pushing down everything else. How can I turn this off? It’s just so, frustrating.
    Please see the image in the link below so you can understand better.
    Image link

Viewing 1 replies (of 1 total)
  • There are several ways to do this. The easiest thing to do would be to add custom CSS to hide it. If your theme has a place for you to add custom CSS, you can add the code there. If not, you could get a plugin that allows you to add custom CSS, such as Custom CSS. Here’s the code you would add:

    .single-post .wp-post-image {
    display: none;
    }

    The code might be a little different if your theme adds the featured image in a custom way. Regardless, this is the easiest way, but it doesn’t actually remove the featured image, it just hides it.

    The better way is to make a child theme, and completely remove the featured image from even being inserted.

Viewing 1 replies (of 1 total)
  • The topic ‘How Do I Stop Featured Image From Displaying in Page Content?’ is closed to new replies.