image_hwstring

函数
image_hwstring ( $width, $height )
参数
  • (int|string) $width Image width in pixels.
    Required:
  • (int|string) $height Image height in pixels.
    Required:
返回值
  • (string) HTML attributes for width and, or height.
定义位置
相关方法
wp_timezone_stringimage_resizeget_image_tagimage_add_captionadd_image_size
引入
2.5.0
弃用
-

image_hwstring: 这个函数用来创建一个字符串,代表一个图像的宽度和高度。

使用给定的宽度和高度值检索宽度和高度属性。

这两个属性都是必需的,因为这两个参数都必须有一个值,但也是可选的,因为如果你把它们设置为false或null,那么它们将不会被添加到返回的字符串中。

你可以用一个字符串来设置值,但它只接受数字值。如果你希望在数字后面加上’px’,那么它将被从返回值中剥离出来。

function image_hwstring( $width, $height ) {
	$out = '';
	if ( $width ) {
		$out .= 'width="' . (int) $width . '" ';
	}
	if ( $height ) {
		$out .= 'height="' . (int) $height . '" ';
	}
	return $out;
}

常见问题

FAQs
查看更多 >