Last active
June 23, 2017 14:17
-
-
Save robertdevore/39a04a30a2cd406c3d3bd5e41e909fc8 to your computer and use it in GitHub Desktop.
Display your featured image wrapped in a link to the post
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
<?php | |
/** | |
* Display featured image wrapped in a link to the post | |
*/ | |
echo "<a href='" . get_permalink( $post->ID ) ."'>"; | |
the_post_thumbnail( 'thumbnail' ); | |
echo "</a>"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment