Definition:
function wp_oembed_add_provider( $format, $provider, $regex = false ) {}
Adds a URL format and oEmbed provider URL pair.
Parameters
- string $format: The format of URL that this provider can handle. You can use asterisks as wildcards.
- string $provider: The URL to the oEmbed provider.
- boolean $regex: Whether the $format parameter is in a regex format.
Source code
function wp_oembed_add_provider( $format, $provider, $regex = false ) { require_once( ABSPATH . WPINC . '/class-oembed.php' ); $oembed = _wp_oembed_get_object(); $oembed->providers[$format] = array( $provider, $regex ); }
3961
No comments yet... Be the first to leave a reply!