Skip to content

Instantly share code, notes, and snippets.

@JackNUMBER
Created March 31, 2014 14:22
Show Gist options
  • Save JackNUMBER/9893411 to your computer and use it in GitHub Desktop.
Save JackNUMBER/9893411 to your computer and use it in GitHub Desktop.
[Wordpress] Test image size
<?
$thumb = get_post_thumbnail_id();
$path = wp_get_attachment_image_src($thumb);
$dimensions = getimagesize($path[0]);
$size = 300;
if ($dimensions[1] < $size) echo 'Larger than ' . $size . 'px';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment