Created
October 13, 2021 14:21
-
-
Save jamesmthornton/5a88fc8f06297c8a9e331d7195ab66df to your computer and use it in GitHub Desktop.
WP check image sizes
This file contains 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
<?php | |
// check default image sizes | |
print_r( get_intermediate_image_sizes() ); | |
// check registered image sizes | |
global $_wp_additional_image_sizes; | |
print_r( $_wp_additional_image_sizes ); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment