• To display the featured image in a post, you need to go into the theme editor > template-parts > content-single.php

    Above <?php the_content(); ?> add the following code:

    <?php
    if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
    the_post_thumbnail( 'full' );
    }
    ?>
    <br>

    It’s bad for SEO to have duplicate content, so this will save your website from some default SEO strikes within the free version of the theme. Now you just simply set the featured image, and it will be posted at the top of your posts as well.

    I really hope this helps others!

    • This topic was modified 3 years, 10 months ago by velatoget.

    The page I need help with: [log in to see the link]

  • The topic ‘Display Featured Image in posts’ is closed to new replies.