Last active
December 3, 2019 07:11
-
-
Save topleague/30ee5499fbfb5a246e6ff65f5a93642a to your computer and use it in GitHub Desktop.
Relocate Featured Image to the Top of Post in Genesis Sample Theme
This file contains 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
// Code to Display Featured Image on top of the post | |
add_action( 'genesis_entry_content', 'featured_post_image', 5 ); | |
function featured_post_image() { | |
if ( !is_singular( array( 'post', 'page' ) )) return; | |
the_post_thumbnail('post-image'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment