wp_oembed_ensure_format

函数
wp_oembed_ensure_format ( $format )
参数
  • (string) $format The oEmbed response format. Accepts 'json' or 'xml'.
    Required:
返回值
  • (string) The format, either 'xml' or 'json'. Default 'json'.
定义位置
相关方法
wp_media_insert_url_formwp_oembed_getwp_embed_defaultswp_embed_excerpt_more_oembed_create_xml
引入
4.4.0
弃用
-

wp_oembed_ensure_format: 这个函数确保一个给定的URL具有正确的oEmbed格式。它根据所有可用的oEmbed提供者检查URL并返回格式化的URL。

确保指定的格式是”json”或”xml”。

function wp_oembed_ensure_format( $format ) {
	if ( ! in_array( $format, array( 'json', 'xml' ), true ) ) {
		return 'json';
	}

	return $format;
}

常见问题

FAQs
查看更多 >