Skip to content

Instantly share code, notes, and snippets.

@bpmore
Last active June 2, 2016 14:06
Show Gist options
  • Save bpmore/4cd92926f649cd690903ae228b946229 to your computer and use it in GitHub Desktop.
Save bpmore/4cd92926f649cd690903ae228b946229 to your computer and use it in GitHub Desktop.
Display Featured Image on top of post in GenesisWP
/* Code to Display Featured Image on top of the post */
add_action( 'genesis_entry_content', 'featured_post_image', 8 );
function featured_post_image() {
if ( !is_singular( array( 'post', 'page' ) )) return;
the_post_thumbnail('large'); //you can use medium, large or a custom size
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment