Move featured image above entry title on single posts

// Move featured image above entry title on single posts
function featured_post_image() {
  if ( ! is_singular( 'post' ) )  return;
	the_post_thumbnail('post-image');
}
add_action( 'genesis_before_entry', 'featured_post_image', 8 );
Scroll to Top