image_make_intermediate_size filter from tellyworth. fixes #6580 for trunk
git-svn-id: http://svn.automattic.com/wordpress/trunk@7703 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4e74faa972
commit
3b95476f1c
|
@ -244,6 +244,7 @@ function image_make_intermediate_size($file, $width, $height, $crop=false) {
|
|||
if ( $width || $height ) {
|
||||
$resized_file = image_resize($file, $width, $height, $crop);
|
||||
if ( !is_wp_error($resized_file) && $resized_file && $info = getimagesize($resized_file) ) {
|
||||
$resized_file = apply_filters('image_make_intermediate_size', $resized_file);
|
||||
return array(
|
||||
'file' => basename( $resized_file ),
|
||||
'width' => $info[0],
|
||||
|
|
Loading…
Reference in New Issue