Skip to content

Instantly share code, notes, and snippets.

@johanguse
Last active March 21, 2024 01:27
Show Gist options
  • Save johanguse/1f48b18b4da5bbd2aa6df41ab884010e to your computer and use it in GitHub Desktop.
Save johanguse/1f48b18b4da5bbd2aa6df41ab884010e to your computer and use it in GitHub Desktop.
List all image sizes from WordPress including custom sizes
<?php
$image_sizes = wp_get_additional_image_sizes();
foreach ( $image_sizes as $key => $image_size ) {
echo "{$key} ({$image_size['width']} x {$image_size['height']})";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment