Saturday, 5 December 2015

How to get wordpress post featured image URL?

if (has_post_thumbnail( $post->ID ) ){ 
  $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
  echo $image[0];//image url 
}

No comments:

Post a Comment