wp_oembed_get

函数
wp_oembed_get ( $url, $args = '' )
参数
  • (string) $url The URL that should be embedded.
    Required:
  • (array|string) $args { Optional. Additional arguments for retrieving embed HTML. Default empty. @type int|string $width Optional. The `maxwidth` value passed to the provider URL. @type int|string $height Optional. The `maxheight` value passed to the provider URL. @type bool $discover Optional. Determines whether to attempt to discover link tags at the given URL for an oEmbed provider when the provider URL is not found in the built-in providers list. Default true. }
    Required:
    Default: (empty)
返回值
  • (string|false) The embed HTML on success, false on failure.
相关
  • WP_oEmbed
定义位置
相关方法
wp_remote_get_wp_oembed_get_objectwp_embed_defaultswp_oembed_ensure_formatwp_ajax_oembed_cache
引入
2.9.0
弃用
-

wp_oembed_get: 这个函数为一个给定的URL检索oEmbed数据。它根据所有可用的oEmbed提供者检查URL,并在一个关联数组中返回数据。

试图使用oEmbed获取所提供的URL的嵌入HTML。

function wp_oembed_get( $url, $args = '' ) {
	$oembed = _wp_oembed_get_object();
	return $oembed->get_html( $url, $args );
}

常见问题

FAQs
查看更多 >