Last active
December 25, 2015 08:09
-
-
Save WesStraham/6945007 to your computer and use it in GitHub Desktop.
prettyPhoto Slideshow Image
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 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