wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_oembed_get › WordPress Function

Since2.9.0
已弃用n/a
wp_oembed_get ( $url, $args = '' )
参数: (2)
  • (string) $url The URL that should be embedded.
    Required: Yes
  • (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: No
    默认: (empty)
查看:
  • WP_oEmbed
返回:
  • (string|false) The embed HTML on success, false on failure.
定义在:
文档:

Attempts to fetch the embed HTML for a provided URL using oEmbed.



源码

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