Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Display-featured-top-Genesis

Display featured image at top of single post

/* Code to Display Featured Image on top of the post */
add_action( 'genesis_before_entry', 'featured_post_image', 8 );
function featured_post_image() {
  if ( ! is_singular( 'post' ) )  return;
	the_post_thumbnail('post-image');
}