Created
June 13, 2014 15:09
-
-
Save davechu/20d8b379ae54631baaeb 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
/** add featured image to archive **/ | |
add_action( 'genesis_entry_header', 'dc_add_feats_archive' ); | |
function dc_add_feats_archive () { | |
if ( is_archive() ) { | |
if ( has_post_thumbnail() ) { | |
the_post_thumbnail(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment