Created
August 3, 2015 14:04
-
-
Save brunomonteiro3/f621ee78c279f8a94f71 to your computer and use it in GitHub Desktop.
Get featured image on Wordpress.
This file contains 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 | |
$featuredImage = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID()), 'full' ); | |
echo $featuredImage[0]; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment