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



get_udims › WordPress Function

Seit2.0.0
Veraltet3.5.0
get_udims ( $width, $height )
Parameter: (2)
  • (int) $width Current width of the image
    Erforderlich: Ja
  • (int) $height Current height of the image
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (array) Shrunk dimensions (width, height).
Definiert in:
Codex:

Calculated the new dimensions for a downsampled image.



Quellcode

function get_udims( $width, $height ) {
	_deprecated_function( __FUNCTION__, '3.5.0', 'wp_constrain_dimensions()' );
	return wp_constrain_dimensions( $width, $height, 128, 96 );
}