Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created November 8, 2012 18:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WebEndevSnippets/4040667 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/4040667 to your computer and use it in GitHub Desktop.
WordPress: Display Custom Image Sizes in Media Gallery
add_filter( 'image_size_names_choose', 'we_custom_image_sizes_choose' );
/**
* Display custom image sizes in Media Gallery
*
*/
function we_custom_image_sizes_choose( $sizes ) {
$custom_sizes = array(
'slider-1140' => 'Wide',
);
return array_merge( $sizes, $custom_sizes );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment