-
-
Save ihorvorotnov/0ad13b066b7e3b24f95c to your computer and use it in GitHub Desktop.
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
/** | |
* Get post thumbnail url | |
*/ | |
function get_image_url(){ | |
$image_id = get_post_thumbnail_id(); | |
$image_url = wp_get_attachment_image_src( $image_id, 'full', false ); | |
$image_url = $image_url[0]; | |
echo $image_url; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment