返回介绍

get_attachment_icon()

发布于 2017-09-10 22:45:30 字数 3140 浏览 1067 评论 0 收藏 0

Warning: This function has been deprecated. Use wp_get_attachment_image() instead.

get_attachment_icon( int $id,  bool $fullsize = false,  array $max_dims = false )

Retrieve HTML content of icon attachment image element.


description


参数

$id

(int) (Optional) Post ID.

$fullsize

(bool) (Optional) default to false. Whether to have full size image.

Default value: false

$max_dims

(array) (Optional) Dimensions of image.

Default value: false


返回值

(false|string) HTML content.


源代码

File: wp-includes/deprecated.php

function get_attachment_icon( $id = 0, $fullsize = false, $max_dims = false ) {
	_deprecated_function( __FUNCTION__, '2.5.0', 'wp_get_attachment_image()' );
	$id = (int) $id;
	if ( !$post = get_post($id) )
		return false;

	if ( !$src = get_attachment_icon_src( $post->ID, $fullsize ) )
		return false;

	list($src, $src_file) = $src;

	// Do we need to constrain the image?
	if ( ($max_dims = apply_filters('attachment_max_dims', $max_dims)) && file_exists($src_file) ) {

		$imagesize = getimagesize($src_file);

		if (($imagesize[0] > $max_dims[0]) || $imagesize[1] > $max_dims[1] ) {
			$actual_aspect = $imagesize[0] / $imagesize[1];
			$desired_aspect = $max_dims[0] / $max_dims[1];

			if ( $actual_aspect >= $desired_aspect ) {
				$height = $actual_aspect * $max_dims[0];
				$constraint = "width='{$max_dims[0]}' ";
				$post->iconsize = array($max_dims[0], $height);
			} else {
				$width = $max_dims[1] / $actual_aspect;
				$constraint = "height='{$max_dims[1]}' ";
				$post->iconsize = array($width, $max_dims[1]);
			}
		} else {
			$post->iconsize = array($imagesize[0], $imagesize[1]);
			$constraint = '';
		}
	} else {
		$constraint = '';
	}

	$post_title = esc_attr($post->post_title);

	$icon = "<img src='$src' title='$post_title' alt='$post_title' $constraint/>";

	return apply_filters( 'attachment_icon', $icon, $post->ID );
}

更新日志

Versiondescription
2.5.0Use wp_get_attachment_image()
2.0.0Introduced.

相关函数

Uses

  • wp-includes/formatting.php: esc_attr()
  • wp-includes/deprecated.php: get_attachment_icon_src()
  • wp-includes/functions.php: _deprecated_function()
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/post.php: get_post()

Used By

  • wp-includes/deprecated.php: get_attachment_innerHTML()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文