Skip to content

Instantly share code, notes, and snippets.

@netconstructor
Forked from janfabry/wpse17728.php
Created May 1, 2012 11:08
Show Gist options
  • Save netconstructor/2567370 to your computer and use it in GitHub Desktop.
Save netconstructor/2567370 to your computer and use it in GitHub Desktop.
Dump WP image resize information
<?php
/*
Plugin Name: WPSE 17728
Plugin URI: http://wordpress.stackexchange.com/questions/17728/large-image-size-is-cropped-not-proportional
Description: Large image size is cropped, not proportional?
Author: jimilesku
*/
add_filter( 'intermediate_image_sizes_advanced', 'wpse17728_intermediate_image_sizes_advanced' );
function wpse17728_intermediate_image_sizes_advanced( $sizes )
{
var_dump( $sizes );
return $sizes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment