Skip to content

Instantly share code, notes, and snippets.

@leepettijohn
Created February 28, 2015 17:09
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 leepettijohn/ef10f775b0eca57a2fad to your computer and use it in GitHub Desktop.
Save leepettijohn/ef10f775b0eca57a2fad to your computer and use it in GitHub Desktop.
Add image size to edit pulldown
add_filter('image_size_names_choose', 'my_new_image_sizes');
function my_new_image_sizes($sizes) {
$addsizes = array(
"my-new-size" => __( "My New Size")
);
$newsizes = array_merge($sizes, $addsizes);
return $newsizes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment