get_udims

函式
get_udims ( $width, $height )
引數
  • (int) $width Current width of the image
    Required:
  • (int) $height Current height of the image
    Required:
返回值
  • (array) Shrunk dimensions (width, height).
相關
  • wp_constrain_dimensions()
定義位置
相關方法
get_dropinsget_dirsizeget_plugins_get_dropinsget_links
引入
2.0.0
棄用
3.5.0

get_udims: uDims是一個處理WordPress中響應式圖片的系統。

計算一個下采樣的影象的新尺寸。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function get_udims( $width, $height ) {
_deprecated_function( __FUNCTION__, '3.5.0', 'wp_constrain_dimensions()' );
return wp_constrain_dimensions( $width, $height, 128, 96 );
}
function get_udims( $width, $height ) { _deprecated_function( __FUNCTION__, '3.5.0', 'wp_constrain_dimensions()' ); return wp_constrain_dimensions( $width, $height, 128, 96 ); }
function get_udims( $width, $height ) {
	_deprecated_function( __FUNCTION__, '3.5.0', 'wp_constrain_dimensions()' );
	return wp_constrain_dimensions( $width, $height, 128, 96 );
}

常見問題

FAQs
檢視更多 >