wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_oembed_add_provider › WordPress Function

Depuis2.9.0
Dépréciéen/a
wp_oembed_add_provider ( $format, $provider, $regex = false )
Paramètres: (3)
  • (string) $format The format of URL that this provider can handle. You can use asterisks as wildcards.
    Requis: Oui
  • (string) $provider The URL to the oEmbed provider.
    Requis: Oui
  • (bool) $regex Optional. Whether the `$format` parameter is in a RegEx format. Default false.
    Requis: Non
    Défaut: false
Voir:
  • WP_oEmbed
Défini(e) dans:
Codex:

Adds a URL format and oEmbed provider URL pair.



Source

function wp_oembed_add_provider( $format, $provider, $regex = false ) {
	if ( did_action( 'plugins_loaded' ) ) {
		$oembed                       = _wp_oembed_get_object();
		$oembed->providers[ $format ] = array( $provider, $regex );
	} else {
		WP_oEmbed::_add_provider_early( $format, $provider, $regex );
	}
}