Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. // Add additional image sizes
  2.     add_image_size( 'homepage-thumb', 535, 350, true );
  3.  
  4. // Show new image size in admin are of media section
  5. add_filter( 'image_size_names_choose', 'yourTheme_custom_image_size' );
  6.  
  7. function yourTheme_custom_image_size( $sizes ) {
  8.     return array_merge( $sizes, array(
  9.         'homepage-thumb' => __( 'Homepage Thumbnail' ),
  10.     ) );
  11. }