Skip to content

Instantly share code, notes, and snippets.

@sudipbd
Created November 25, 2016 16:48
Show Gist options
  • Save sudipbd/d2bfdd9c556e2daf7da7cefcd213beb5 to your computer and use it in GitHub Desktop.
Save sudipbd/d2bfdd9c556e2daf7da7cefcd213beb5 to your computer and use it in GitHub Desktop.
WordPress image URL
<?php
$thumb_id = get_post_thumbnail_id();
$thumb_url_array = wp_get_attachment_image_src($thumb_id, 'thumbnail-size', true);
$thumb_url = $thumb_url_array[0];
?>
<?php echo $thumb_url; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment