Last active
August 29, 2015 13:56
-
-
Save bawright/9336079 to your computer and use it in GitHub Desktop.
Display Featured Image in Post/Page
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
<?php | |
//* Do NOT include the opening php tag | |
add_action ( 'genesis_entry_header', 'odg_featured_image', 15 ); // '5' before title // '15' after title | |
function odg_featured_image() { | |
if ( !is_singular( 'page' ) || !has_post_thumbnail() ) // 'post' // 'page' // or blank for both | |
return; | |
echo '<div class="featured-image">'; // set your container class | |
genesis_image( array( 'size' => 'image_size', 'attr' => array( 'class' => 'featured' ) ) ); // set your img class if needed | |
echo '</div>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment