retrieve custom image sizes from media uploader javascript object
thanks to a friend on Twitter, I was able to get this working. Below is the code. function wpse_110060_image_sizes_js( $response, $attachment, $meta ){ $size_array = array( ‘custom_size_one’, ‘custom_size_two’) ; foreach ( $size_array as $size ): if ( isset( $meta[‘sizes’][ $size ] ) ) { $attachment_url = wp_get_attachment_url( $attachment->ID ); $base_url = str_replace( wp_basename( $attachment_url ), … Read more