Last active
February 28, 2021 05:35
-
-
Save iamchetanp/f8c90138e9a3c253af0633ee8740cb5e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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