This function has been deprecated. Use image_resize() instead.
wp_create_thumbnail( mixed $file, int $max_side, mixed $deprecated = '' )
This was once used to create a thumbnail from an Image given a maximum side size.
Description
See also
Parameters
- $file
-
(Required) Filename of the original image, Or attachment id.
- $max_side
-
(Required) Maximum length of a single side for the thumbnail.
- $deprecated
-
(Optional) Never used.
Default value: ''
Return
(string) Thumbnail path on success, Error string on failure.
Source
File: wp-admin/includes/deprecated.php
function wp_create_thumbnail( $file, $max_side, $deprecated = '' ) {
_deprecated_function( __FUNCTION__, 'WP-3.5.0', 'image_resize()' );
return apply_filters( 'wp_create_thumbnail', image_resize( $file, $max_side, $max_side ) );
}
Changelog
Version | Description |
---|---|
WP-3.5.0 | Use image_resize() |
WP-1.2.0 | Introduced. This function has been deprecated. Use image_resize() instead. |