crazyyy
4/28/2014 - 11:43 AM

WordPress: get link to the post thumbains

WordPress: get link to the post thumbains

<?php 
  if ( has_post_thumbnail()) {
  $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large');
  echo $large_image_url[0] ;
  }
?>