Answers for "how to get featured image path in wordpress"

PHP
1

get featured image url in wordpress

if ( has_post_thumbnail()) {
   $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large');
   echo '<a href="' . $large_image_url[0] . '">';
   the_post_thumbnail('thumbnail');
   echo '</a>';
}
Posted by: Guest on January-05-2021

Code answers related to "how to get featured image path in wordpress"

Browse Popular Code Answers by Language