Skip to content

Instantly share code, notes, and snippets.

@wcodex
Created April 10, 2014 05:23
Show Gist options
  • Save wcodex/10344809 to your computer and use it in GitHub Desktop.
Save wcodex/10344809 to your computer and use it in GitHub Desktop.
Display featured images before post content
add_action( 'genesis_before_post_content', 'wcodex_before_post_content_image', 5 );
function wcodex_before_post_content_image() {
if ( is_page() ) return;
if ( $image = genesis_get_image( 'format=url&size=post-image' ) ) {
printf( '<a href="%s" rel="bookmark"><img class="post-photo" src="%s" alt="%s" /></a>', get_permalink(), $image, the_title_attribute( 'echo=0' ) );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment