返回介绍

get_header_image_tag()

发布于 2017-09-10 23:22:50 字数 3447 浏览 1025 评论 0 收藏 0

get_header_image_tag( array $attr = array() )

Create image tag markup for a custom header image.


description


参数

$attr

(array) (Optional) Additional attributes for the image tag. Can be used to override the default attributes.

Default value: array()


返回值

(string) HTML image element markup or empty string on failure.


源代码

File: wp-includes/theme.php

function get_header_image_tag( $attr = array() ) {
	$header = get_custom_header();
	$header->url = get_header_image();

	if ( ! $header->url ) {
		return '';
	}

	$width = absint( $header->width );
	$height = absint( $header->height );

	$attr = wp_parse_args(
		$attr,
		array(
			'src' => $header->url,
			'width' => $width,
			'height' => $height,
			'alt' => get_bloginfo( 'name' ),
		)
	);

	// Generate 'srcset' and 'sizes' if not already present.
	if ( empty( $attr['srcset'] ) && ! empty( $header->attachment_id ) ) {
		$image_meta = get_post_meta( $header->attachment_id, '_wp_attachment_metadata', true );
		$size_array = array( $width, $height );

		if ( is_array( $image_meta ) ) {
			$srcset = wp_calculate_image_srcset( $size_array, $header->url, $image_meta, $header->attachment_id );
			$sizes = ! empty( $attr['sizes'] ) ? $attr['sizes'] : wp_calculate_image_sizes( $size_array, $header->url, $image_meta, $header->attachment_id );

			if ( $srcset && $sizes ) {
				$attr['srcset'] = $srcset;
				$attr['sizes'] = $sizes;
			}
		}
	}

	$attr = array_map( 'esc_attr', $attr );
	$html = '<img';

	foreach ( $attr as $name => $value ) {
		$html .= ' ' . $name . '="' . $value . '"';
	}

	$html .= ' />';

	/**
	 * Filters the markup of header images.
	 *
	 * @since 4.4.0
	 *
	 * @param string $html   The HTML image tag markup being filtered.
	 * @param object $header The custom header object returned by 'get_custom_header()'.
	 * @param array  $attr   Array of the attributes for the image tag.
	 */
	return apply_filters( 'get_header_image_tag', $html, $header, $attr );
}

更新日志

Versiondescription
4.4.0Introduced.

相关函数

Uses

  • wp-includes/theme.php: get_header_image_tag
  • wp-includes/media.php: wp_calculate_image_srcset()
  • wp-includes/media.php: wp_calculate_image_sizes()
  • wp-includes/theme.php: get_custom_header()
  • wp-includes/theme.php: get_header_image()
  • wp-includes/general-template.php: get_bloginfo()
  • wp-includes/functions.php: absint()
  • wp-includes/functions.php: wp_parse_args()
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/post.php: get_post_meta()
  • Show 5 more uses Hide more uses

Used By

  • wp-includes/theme.php: get_custom_header_markup()
  • wp-includes/theme.php: the_header_image_tag()

User Contributed Notes

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

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

发布评论

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