Last active
December 20, 2015 21:25
-
-
Save sarvar/9647ec3219bab498f40b to your computer and use it in GitHub Desktop.
Thumnail Size Wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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