get_oembed_endpoint_url

函数
get_oembed_endpoint_url ( $permalink = '', $format = 'json' )
参数
  • (string) $permalink Optional. The permalink used for the `url` query arg. Default empty.
    Required:
    Default: (empty)
  • (string) $format Optional. The requested response format. Default 'json'.
    Required:
    Default: 'json'
返回值
  • (string) The oEmbed endpoint URL.
定义位置
相关方法
get_oembed_response_data_for_urlget_post_embed_urlget_oembed_response_dataget_oembed_response_data_richis_protected_endpoint
引入
4.4.0
弃用
-

get_oembed_endpoint_url函数用于检索特定URL的oEmbed端点的URL: 这个函数可以用来将其他网站的内容嵌入到WordPress的文章或页面中。

为给定的固定地址检索oEmbed端点URL。

传递一个空字符串作为第一个参数,以获得端点基本URL。

function get_oembed_endpoint_url( $permalink = '', $format = 'json' ) {
	$url = rest_url( 'oembed/1.0/embed' );

	if ( '' !== $permalink ) {
		$url = add_query_arg(
			array(
				'url'    => urlencode( $permalink ),
				'format' => ( 'json' !== $format ) ? $format : false,
			),
			$url
		);
	}

	/**
	 * Filters the oEmbed endpoint URL.
	 *
	 * @since 4.4.0
	 *
	 * @param string $url       The URL to the oEmbed endpoint.
	 * @param string $permalink The permalink used for the `url` query arg.
	 * @param string $format    The requested response format.
	 */
	return apply_filters( 'oembed_endpoint_url', $url, $permalink, $format );
}

常见问题

FAQs
查看更多 >