Genesis Featured Image on top
Genesis WordPress theme
/* 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( ‘page’ ) ) return;
the_post_thumbnail(‘post-image’);
}