Skip to content

Instantly share code, notes, and snippets.

@sarvar
Last active December 20, 2015 21:25
Show Gist options
  • Save sarvar/9647ec3219bab498f40b to your computer and use it in GitHub Desktop.
Save sarvar/9647ec3219bab498f40b to your computer and use it in GitHub Desktop.
Thumnail Size Wordpress
width="<?php echo $image['sizes']['medium-width']; ?>" height="<?php echo $image['sizes']['medium-height']; ?>"
<?php the_post_thumbnail('thumbnail'); ?>
the_post_thumbnail(); // without parameter -> Thumbnail
the_post_thumbnail('thumbnail'); // Thumbnail
the_post_thumbnail('medium'); // Medium resolution
the_post_thumbnail('large'); // Large resolution
the_post_thumbnail( array(100,100) ); // Other resolutions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment