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!
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
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!