Skip to content

Instantly share code, notes, and snippets.

@bstonedev
Created January 27, 2023 00:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bstonedev/ad9bce54ee6b424f5818371706782fb0 to your computer and use it in GitHub Desktop.
Save bstonedev/ad9bce54ee6b424f5818371706782fb0 to your computer and use it in GitHub Desktop.
Display All Available Media Image Sizes
<?php
function add_custom_image_sizes() {
global $_wp_additional_image_sizes;
print '<pre>';
print_r( $_wp_additional_image_sizes );
print '</pre>';
}
add_action( 'after_setup_theme', 'add_custom_image_sizes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment