Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created January 25, 2013 17:47
Show Gist options
  • Select an option

  • Save billerickson/4636435 to your computer and use it in GitHub Desktop.

Select an option

Save billerickson/4636435 to your computer and use it in GitHub Desktop.
<?php
/**
* Featured Image on Single Posts
*
*/
function be_single_featured_image() {
if( is_single() && has_post_thumbnail() )
echo '<p class="featured-image">' . get_the_post_thumbnail( null, 'large' ) . '</p>';
}
add_action( 'genesis_before_post_content', 'be_single_featured_image' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment