Answers for "wordpress post featured image url"

PHP
2

get featured image url

echo get_the_post_thumbnail_url();
Posted by: Guest on June-29-2020
8

wordpress get post thumbnail url

<?php 
  // ALL parameters are optional. Not needed if you are on WP LOOP
  echo get_the_post_thumbnail_url( $the_query->ID, array( 500, 400) ); ?>
Posted by: Guest on May-21-2020
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 "wordpress post featured image url"

Browse Popular Code Answers by Language