wp_create_thumbnail()
Deprecated since 3.5.0. It is no longer supported and may be removed in future releases. Use image_resize() instead.
This was once used to create a thumbnail from an Image given a maximum side size.
Hooks from the function
Returns
String. Thumbnail path on success, Error string on failure.
Usage
wp_create_thumbnail( $file, $max_side, $deprecated );
- $file(mixed) (required)
- Filename of the original image, Or attachment ID.
- $max_side(int) (required)
- Maximum length of a single side for the thumbnail.
- $deprecated(mixed)
- Never used.
Default:''
Notes
- See: image_resize()
Changelog
| Since 1.2.0 | Introduced. |
| Deprecated since 3.5.0 | Use image_resize() |
wp_create_thumbnail() wp create thumbnail code WP 7.0
function wp_create_thumbnail( $file, $max_side, $deprecated = '' ) {
_deprecated_function( __FUNCTION__, '3.5.0', 'image_resize()' );
return apply_filters( 'wp_create_thumbnail', image_resize( $file, $max_side, $max_side ) );
}