wp_get_attachment_image_srcset

函数
wp_get_attachment_image_srcset ( $attachment_id, $size = 'medium', $image_meta = null )
参数
  • (int) $attachment_id Image attachment ID.
    Required:
  • (string|int[]) $size Optional. Image size. Accepts any registered image size name, or an array of width and height values in pixels (in that order). Default 'medium'.
    Required:
    Default: 'medium'
  • (array) $image_meta Optional. The image meta data as returned by 'wp_get_attachment_metadata()'. Default null.
    Required:
    Default: null
返回值
  • (string|false) A 'srcset' value string or false.
相关
  • wp_calculate_image_srcset()
定义位置
相关方法
wp_get_attachment_image_srcwp_get_attachment_image_urlwp_get_attachment_image_sizeswp_get_attachment_imagewp_get_attachment_url
引入
4.4.0
弃用
-

wp_get_attachment_image_srcset: 这个函数返回一个数组,包含特定图片附件的图片来源和尺寸。这对于生成响应式图片很有用。

检索一个图像附件的’srcset’属性的值。

function wp_get_attachment_image_srcset( $attachment_id, $size = 'medium', $image_meta = null ) {
	$image = wp_get_attachment_image_src( $attachment_id, $size );

	if ( ! $image ) {
		return false;
	}

	if ( ! is_array( $image_meta ) ) {
		$image_meta = wp_get_attachment_metadata( $attachment_id );
	}

	$image_src  = $image[0];
	$size_array = array(
		absint( $image[1] ),
		absint( $image[2] ),
	);

	return wp_calculate_image_srcset( $size_array, $image_src, $image_meta, $attachment_id );
}

常见问题

FAQs
查看更多 >