Skip to content

Instantly share code, notes, and snippets.

@jennimckinnon
Created May 24, 2017 12:08
Show Gist options
  • Save jennimckinnon/073e32ef74b177351a55ade15b8c059d to your computer and use it in GitHub Desktop.
Save jennimckinnon/073e32ef74b177351a55ade15b8c059d to your computer and use it in GitHub Desktop.
add_filter( 'image_size_names_choose', 'my_custom_sizes' );
function my_custom_sizes( $sizes ) {
return array_merge( $sizes, array(
'new-custom-size' => __( 'New Custom Size Name' ),
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment