Skip to content

Instantly share code, notes, and snippets.

@PittsburghChris
Created December 5, 2013 20:14
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 PittsburghChris/7813065 to your computer and use it in GitHub Desktop.
Save PittsburghChris/7813065 to your computer and use it in GitHub Desktop.
Make the add_image_size you've placed into functions.php available on the Admin side on the Media Library
add_filter( 'image_size_names_choose', 'my_custom_sizes' );
function my_custom_sizes( $sizes ) {
return array_merge( $sizes, array(
'your-custom-size' => __('Your Custom Size Name'),
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment