Skip to content

Instantly share code, notes, and snippets.

@Elgameel
Created December 2, 2016 05:32
Show Gist options
  • Save Elgameel/acaba832e5c2c087aa79c6d2544618af to your computer and use it in GitHub Desktop.
Save Elgameel/acaba832e5c2c087aa79c6d2544618af to your computer and use it in GitHub Desktop.
Add the following code to the end of your Genesis child theme's functions.php file. Read full guide here: https://wp-me.com/display-featured-image-genesis-child-themes/
/* Display featured image before single post title */
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