Skip to content

Instantly share code, notes, and snippets.

@bawright
Last active August 29, 2015 13:56
Show Gist options
  • Save bawright/9336079 to your computer and use it in GitHub Desktop.
Save bawright/9336079 to your computer and use it in GitHub Desktop.
Display Featured Image in Post/Page
<?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