Created
January 25, 2013 17:47
-
-
Save billerickson/4636435 to your computer and use it in GitHub Desktop.
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
| <?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