wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_create_thumbnail › WordPress Function

Seit1.2.0
Veraltet3.5.0
wp_create_thumbnail ( $file, $max_side, $deprecated = '' )
Parameter: (3)
  • (mixed) $file Filename of the original image, Or attachment ID.
    Erforderlich: Ja
  • (int) $max_side Maximum length of a single side for the thumbnail.
    Erforderlich: Ja
  • (mixed) $deprecated Never used.
    Erforderlich: Nein
    Standard: (leer)
Siehe:
Gibt zurück:
  • (string) Thumbnail path on success, Error string on failure.
Definiert in:
Codex:

This was once used to create a thumbnail from an Image given a maximum side size.



Quellcode

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 ) );
}