Viewing 6 replies - 1 through 6 (of 6 total)
  • I came here to ask exactly the same question.

    Regards,
    An1MuS

    Thread Starter New_Joerg

    (@new_joerg)

    I’ve done some research: It looks as if the featured images do not appear on purpose in the posts ??

    But it must be possible to change that, no?

    In your single.php (in your child-theme preferably) put this just above <?php the_content(); ?>:

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

    Then you just need to format it with CSS

    AniMuS is correct. You have to edit the php file that controls the look of the single post pages. single.php and use the_post_thumbnail(); to call on the featured image.

    jonastephenson

    (@jonastephenson)

    In single.php I do not see <?php the_content(); ?>

    It also comes to mind Why are we editing the php when the demo of Expound shows the image to the left of the post?

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Featured Image not shown inside post’ is closed to new replies.