Last active
July 2, 2016 02:27
-
-
Save cre8tivediva/e019db65ff0278cb36185c4e6ba859e6 to your computer and use it in GitHub Desktop.
Display Featured Image on Single Posts in Genesis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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