Skip to content

Instantly share code, notes, and snippets.

@iamchetanp
Last active February 28, 2021 05:35
Show Gist options
  • Save iamchetanp/f8c90138e9a3c253af0633ee8740cb5e to your computer and use it in GitHub Desktop.
Save iamchetanp/f8c90138e9a3c253af0633ee8740cb5e to your computer and use it in GitHub Desktop.
/**
* Get all image sizes.
*/
function cp_get_all_image_sizes() {
global $_wp_additional_image_sizes;
print '<pre>';
print_r( $_wp_additional_image_sizes );
print '</pre>';
}
add_action( 'init', 'cp_get_all_image_sizes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment