Skip to content

Instantly share code, notes, and snippets.

@corypina
Last active March 6, 2019 05:11
Show Gist options
  • Save corypina/1c14737796112da158ad810f837aa1f7 to your computer and use it in GitHub Desktop.
Save corypina/1c14737796112da158ad810f837aa1f7 to your computer and use it in GitHub Desktop.
Register custom image sizes in WordPress
<?php
// Add featured image sizes
add_image_size( 'custom-small', 500, 300, true ); // name, width, height, crop
add_image_size( 'custom-large', 1840, 793, true );
// Register the image sizes for the Add Media modal
add_filter( 'image_size_names_choose', function( $sizes ) {
return array_merge( $sizes, array(
'custom-small' => __( 'Custom Small' ),
'custom-large' => __( 'Custom Large' ),
) );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment