Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/6128738 to your computer and use it in GitHub Desktop.
Save braddalton/6128738 to your computer and use it in GitHub Desktop.
/**
* @author Brad Dalton WP Sites
* @link http://wpsites.net/blog
*/
add_action( 'genesis_before_post_title', 'reposition_portfolio_image' );
function reposition_portfolio_image() {
if (is_front_page() && has_post_thumbnail() ) {
echo '<div class="portfolio-featured-image">';
echo '<a href="' . get_permalink() .'" title="' . the_title_attribute( 'echo=0' ) . '">';
echo get_the_post_thumbnail($thumbnail->ID, 'portfolio' );
echo '</a>';
echo '</div>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment