Answers for "get thumbnail wordpress"

PHP
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
0

wordpress thumbnail url

<img src='<?php the_post_thumbnail_url(); ?>'>
Posted by: Guest on February-17-2021
0

wp+get feature image

<?php
	echo get_the_post_thumbnail( $post_id, 'thumbnail' );
?>
Posted by: Guest on November-28-2020
0

wordpress get post thumbnail

<?php 
/* RETURNS a full image resource as: <img class="data..." src="data...">
   ALL parameters are optional. Not needed if you are on WP LOOP
*/
echo get_the_post_thumbnail( $the_query->ID, array( 500, 400) ); 
/* USE get_the_post_thumbnail_url() to get only the image url */
?>
Posted by: Guest on May-21-2020
1

Wordpress thumbnail

// without parameter -> Post Thumbnail (as set by theme using set_post_thumbnail_size())
get_the_post_thumbnail( $post_id );                   
 
get_the_post_thumbnail( $post_id, 'thumbnail' );      // Thumbnail (Note: different to Post Thumbnail)
get_the_post_thumbnail( $post_id, 'medium' );         // Medium resolution
get_the_post_thumbnail( $post_id, 'large' );          // Large resolution
get_the_post_thumbnail( $post_id, 'full' );           // Original resolution
 
get_the_post_thumbnail( $post_id, array( 100, 100) ); // Other resolutions
Posted by: Guest on June-19-2021

Code answers related to "get thumbnail wordpress"

Browse Popular Code Answers by Language