Created
May 19, 2011 20:31
-
-
Save janfabry/981666 to your computer and use it in GitHub Desktop.
Dump WP image resize information
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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