Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Bradley-D/7978158 to your computer and use it in GitHub Desktop.
Save Bradley-D/7978158 to your computer and use it in GitHub Desktop.
function show_image_sizes( $sizes ) {
$new_sizes = array();
$added_sizes = get_intermediate_image_sizes();
// $added_sizes is an indexed array, therefore need to convert it
// to associative array, using $value for $key and $value
foreach( $added_sizes as $key => $value ) {
$new_sizes[$value] = $value;
}
// This preserves the labels in $sizes, and merges the two arrays
$new_sizes = array_merge( $new_sizes, $sizes );
return $new_sizes;
}
add_filter( 'image_size_names_choose', 'show_image_sizes', 11, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment