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
// Add the following code to your functions.php | |
// Hook Featured Image to Entry Header | |
add_action( 'genesis_entry_header', 'featured_post_image', 5 ); | |
function featured_post_image() { | |
if ( !is_singular( array( 'post', 'page' ) )) return; | |
the_post_thumbnail('post-image'); | |
} | |
//* Remove the entry title in the entry header |