Skip to content

Instantly share code, notes, and snippets.

@WesStraham
Last active December 25, 2015 08:09
Show Gist options
  • Select an option

  • Save WesStraham/6945007 to your computer and use it in GitHub Desktop.

Select an option

Save WesStraham/6945007 to your computer and use it in GitHub Desktop.
prettyPhoto Slideshow Image
// Add Featured Image for the Portfolio posts in this Page Template
add_action('genesis_before_post_content', 'legacy_portfolio_do_post_image');
function legacy_portfolio_do_post_image() {
$img = genesis_get_image( array( 'format' => 'html', 'size' => 'portfolio-thumbnail', 'attr' => array( 'class' => 'alignnone post-image' ) ) );
printf( '<a href="%s" rel="prettyPhoto[gallery1]" title="%s">%s</a>', genesis_get_image( array( 'format' => 'url', 'size' => 'Portfolio Full', 'attr' => array( 'class' => 'alignnone post-image' ) ) ), the_title_attribute('echo=0'), $img );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment