Skip to content

Instantly share code, notes, and snippets.

@mrdavefoy
Last active April 7, 2018 15:10
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 mrdavefoy/68ae85c2cbcbd362f33ee474930c85ee to your computer and use it in GitHub Desktop.
Save mrdavefoy/68ae85c2cbcbd362f33ee474930c85ee to your computer and use it in GitHub Desktop.
Add new image size to Size dropdown
function my_custom_sizes( $sizes ) {
return array_merge( $sizes, array(
'content' => __( 'Content' ),
) );
}
add_filter( 'image_size_names_choose', 'my_custom_sizes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment