How to get image thumbnail url in wordpress

if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), array(200, 200) );
echo  $large_image_url[0];
}




you can just change the   array(200, 200)  to   array(400, 400)  something like that to get big image url links in wordpress

No comments:

Post a Comment