• My theme (eleven40 by studiopress) by default does not include the featured image within the post. When I first set up my site, a programmer customized it so that the image would show up. I would like to change it back to the default setting. Is this simple to do or do I need to leave it to a pro?

Viewing 2 replies - 1 through 2 (of 2 total)
  • This should be easy:
    Inside the single.php or the content-single.php you should find this:
    the_post_thumbnail();
    Maybe with some attributes inside the “()”.
    Just delete this line of Code.
    If it is wrapped into a if-query like:

    if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
    	the_post_thumbnail();
    }

    just delete the whole query.

    Thread Starter 2chihuahua

    (@2chihuahua)

    Thanks for your help! I don’t see that code in the single.php file. Would it be somewhere else since I’m using Genesis?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove featured image’ is closed to new replies.