WordPress tip: Get thumbnail url

Simply paste the following code on your theme file, within the loop.

<?php
$image_id = get_post_thumbnail_id();
$image_url = wp_get_attachment_image_src($image_id);
$image_url = $image_url[0];
?>

Thanks to WP Snippets for the cool tip!

Leave a Reply

Your email address will not be published. Required fields are marked *