返回介绍

get_attachment_icon_src()

发布于 2017-09-10 22:45:48 字数 2812 浏览 857 评论 0 收藏 0

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

get_attachment_icon_src( int $id,  bool $fullsize = false )

Retrieve icon URL and Path.


description


参数

$id

(int) (Optional) Post ID.

$fullsize

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

Default value: false


返回值

(array) Icon URL and full path to file, respectively.


源代码

File: wp-includes/deprecated.php

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

	$file = get_attached_file( $post->ID );

	if ( !$fullsize && $src = wp_get_attachment_thumb_url( $post->ID ) ) {
		// We have a thumbnail desired, specified and existing

		$src_file = basename($src);
	} elseif ( wp_attachment_is_image( $post->ID ) ) {
		// We have an image without a thumbnail

		$src = wp_get_attachment_url( $post->ID );
		$src_file = & $file;
	} elseif ( $src = wp_mime_type_icon( $post->ID ) ) {
		// No thumb, no image. We'll look for a mime-相关函数 icon instead.

		$icon_dir = apply_filters( 'icon_dir', get_template_directory() . '/images' );
		$src_file = $icon_dir . '/' . basename($src);
	}

	if ( !isset($src) || !$src )
		return false;

	return array($src, $src_file);
}

更新日志

Versiondescription
2.5.0Use wp_get_attachment_image_src()
2.1.0Introduced.

相关函数

Uses

  • wp-includes/theme.php: get_template_directory()
  • wp-includes/functions.php: _deprecated_function()
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/post.php: wp_attachment_is_image()
  • wp-includes/post.php: wp_mime_type_icon()
  • wp-includes/post.php: icon_dir
  • wp-includes/post.php: wp_get_attachment_thumb_url()
  • wp-includes/post.php: wp_get_attachment_url()
  • wp-includes/post.php: get_post()
  • wp-includes/post.php: get_attached_file()
  • Show 5 more uses Hide more uses

Used By

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

User Contributed Notes

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

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

发布评论

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