Skip to content

Instantly share code, notes, and snippets.

@saqibsarwar
Last active June 15, 2016 19:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save saqibsarwar/33ce57b5040556e6a7a8034321cb1984 to your computer and use it in GitHub Desktop.
Save saqibsarwar/33ce57b5040556e6a7a8034321cb1984 to your computer and use it in GitHub Desktop.
Display list default image sizes in WordPress with related dimensions.
<?php
$image_sizes = get_intermediate_image_sizes();
foreach( $image_sizes as $image_size ){
$holder_width = get_option( $image_size . '_size_w' );
$holder_height = get_option( $image_size . '_size_h' );
echo $image_size . ":" . $holder_width . " x " . $holder_height;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment