Last active
April 16, 2019 14:06
-
-
Save leepettijohn/4c55a2ef26986e5fc21e to your computer and use it in GitHub Desktop.
Add Featured Image Link
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 and link | |
$image = genesis_get_image( array( | |
'format' => 'html', | |
'size' => 'SET_SIZE_HERE', | |
) ); | |
printf( '<a href="%s" title="%s" >%s</a>', get_permalink(), the_title_attribute( 'echo=0' ), $image ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment