Show featured image in post?

Homepage Community Forums inSync Theme Support Show featured image in post?

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #22858
    christoffer
    Customer

      Hello. Is it possible to show the featured image inside the post for inSync?

      #22860
      Wes
      Moderator

        Yes, if you add this to your functions file then it should show up on top –

        /* Show Featured Image in Posts */
        add_action( 'genesis_before_entry', 'featured_post_image', 8 );
        function featured_post_image() {
          if ( ! is_singular( 'post' ) )  return;
        	the_post_thumbnail('post-image');
        }

        Let me know if that works

        #22862
        christoffer
        Customer

          Yep, works amazing, thank you very much 馃檪

        Viewing 3 posts - 1 through 3 (of 3 total)
        • The topic ‘Show featured image in post?’ is closed to new replies.