Created
September 6, 2013 18:23
-
-
Save eduardozulian/6467854 to your computer and use it in GitHub Desktop.
Get all the registered image sizes along with their dimensions
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 | |
/** | |
* Get all the registered image sizes along with their dimensions | |
* | |
* @global array $_wp_additional_image_sizes | |
* | |
* @link http://core.trac.wordpress.org/ticket/18947 Reference ticket | |
* @return array $image_sizes The image sizes | |
*/ | |
function _get_all_image_sizes() { | |
global $_wp_additional_image_sizes; | |
$default_image_sizes = array( 'thumbnail', 'medium', 'large' ); | |
foreach ( $default_image_sizes as $size ) { | |
$image_sizes[$size]['width'] = intval( get_option( "{$size}_size_w") ); | |
$image_sizes[$size]['height'] = intval( get_option( "{$size}_size_h") ); | |
$image_sizes[$size]['crop'] = get_option( "{$size}_crop" ) ? get_option( "{$size}_crop" ) : false; | |
} | |
if ( isset( $_wp_additional_image_sizes ) && count( $_wp_additional_image_sizes ) ) | |
$image_sizes = array_merge( $image_sizes, $_wp_additional_image_sizes ); | |
return $image_sizes; | |
} | |
?> |
Put global $_wp_additional_image_sizes
at the beginning.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, thanks for the gist.
I think you forgot to initialize your array
$image_sizes
before the loop. Also, I would rewrite the whole block like this:Untested code, but it should work ;)