返回介绍

get_oembed_response_data_rich()

发布于 2017-09-10 23:40:03 字数 2691 浏览 1071 评论 0 收藏 0

get_oembed_response_data_rich( array $data,  WP_Post $post,  int $width,  int $height )

Filters the oEmbed response data to return an iframe embed code.


description


参数

$data

(array) (Required) The response data.

$post

(WP_Post) (Required) The post object.

$width

(int) (Required) The requested width.

$height

(int) (Required) The calculated height.


返回值

(array) The modified response data.


源代码

File: wp-includes/embed.php

function get_oembed_response_data_rich( $data, $post, $width, $height ) {
	$data['width']  = absint( $width );
	$data['height'] = absint( $height );
	$data['type']   = 'rich';
	$data['html']   = get_post_embed_html( $width, $height, $post );

	// Add post thumbnail to response if available.
	$thumbnail_id = false;

	if ( has_post_thumbnail( $post->ID ) ) {
		$thumbnail_id = get_post_thumbnail_id( $post->ID );
	}

	if ( 'attachment' === get_post_type( $post ) ) {
		if ( wp_attachment_is_image( $post ) ) {
			$thumbnail_id = $post->ID;
		} else if ( wp_attachment_is( 'video', $post ) ) {
			$thumbnail_id = get_post_thumbnail_id( $post );
			$data['type'] = 'video';
		}
	}

	if ( $thumbnail_id ) {
		list( $thumbnail_url, $thumbnail_width, $thumbnail_height ) = wp_get_attachment_image_src( $thumbnail_id, array( $width, 99999 ) );
		$data['thumbnail_url']    = $thumbnail_url;
		$data['thumbnail_width']  = $thumbnail_width;
		$data['thumbnail_height'] = $thumbnail_height;
	}

	return $data;
}

更新日志

Versiondescription
4.4.0Introduced.

相关函数

Uses

  • wp-includes/embed.php: get_post_embed_html()
  • wp-includes/post.php: wp_attachment_is()
  • wp-includes/functions.php: absint()
  • wp-includes/post-thumbnail-template.php: has_post_thumbnail()
  • wp-includes/post-thumbnail-template.php: get_post_thumbnail_id()
  • wp-includes/media.php: wp_get_attachment_image_src()
  • wp-includes/post.php: wp_attachment_is_image()
  • wp-includes/post.php: get_post_type()
  • Show 3 more uses Hide more uses

User Contributed Notes

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

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

发布评论

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