Summery Summery
Adds a URL format and oEmbed provider URL pair.
Syntax Syntax
Parameters Parameters
- $format
-
(Required) The format of URL that this provider can handle. You can use asterisks as wildcards.
- $provider
-
(Required) The URL to the oEmbed provider.
- $regex
-
(Optional) Whether the
$format
parameter is in a RegEx format.Default value: false
Source Source
File: wp-includes/embed.php
$oembed->providers[ $format ] = array( $provider, $regex ); } else { WP_oEmbed::_add_provider_early( $format, $provider, $regex ); } } /** * Removes an oEmbed provider.
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.9.0 | Introduced. |