Skip to content

Instantly share code, notes, and snippets.

@cre8tivediva
Last active July 2, 2016 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cre8tivediva/e019db65ff0278cb36185c4e6ba859e6 to your computer and use it in GitHub Desktop.
Save cre8tivediva/e019db65ff0278cb36185c4e6ba859e6 to your computer and use it in GitHub Desktop.
Display Featured Image on Single Posts in Genesis
// Display Featured Image Above the Title on Single Posts
add_action('genesis_before_entry', 'featured_post_image', 8);
function featured_post_image() {
if (!is_singular('post')) return;
the_post_thumbnail('post-image');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment