wp_oembed_remove_provider()

wp_oembed_remove_provider( string $format ) 删除oEmbed提供程…

wp_oembed_remove_provider( string $format )

删除oEmbed提供程序。
Removes an oEmbed provider.

目录锚点:#说明#参数#源码#笔记


说明(Description)

另见函数 https://www.wp2.cn/functions()


参数(Parameters)

参数 类型 说明
$format (string) 要删除的oEmbed提供程序的URL格式。

源码(Source)

/**
 * Removes an oEmbed provider.
 *
 * @since 3.5.0
 *
 * @see WP_oEmbed
 *
 * @param string $format The URL format for the oEmbed provider to remove.
 * @return bool Was the provider removed successfully?
 */
function wp_oembed_remove_provider( $format ) {
	require_once( ABSPATH . WPINC . '/class-oembed.php' );

	if ( did_action( 'plugins_loaded' ) ) {
		$oembed = _wp_oembed_get_object();

		if ( isset( $oembed->providers[ $format ] ) ) {
			unset( $oembed->providers[ $format ] );
			return true;
		}
	} else {
		WP_oEmbed::_remove_provider_early( $format );
	}

	return false;
}
更新版本 源码位置 使用 被使用
3.5.0 wp-includes/embed.php 12 4

笔记(Notes)

删除WordPress电视提供商

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册