wp_oembed_add_provider

The timeline below displays how wordpress function wp_oembed_add_provider has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.5

/**
 * Adds a URL format and oEmbed provider URL pair.
 *
 * @since 2.9.0
 *
 * @see WP_oEmbed
 *
 * @param string $format   The format of URL that this provider can handle. You can use asterisks
 *                         as wildcards.
 * @param string $provider The URL to the oEmbed provider.
 * @param bool   $regex    Optional. Whether the `$format` parameter is in a RegEx format. Default false.
 */
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);
    }
}

WordPress Version: 4.7

/**
 * Adds a URL format and oEmbed provider URL pair.
 *
 * @since 2.9.0
 *
 * @see WP_oEmbed
 *
 * @param string  $format   The format of URL that this provider can handle. You can use asterisks
 *                          as wildcards.
 * @param string  $provider The URL to the oEmbed provider.
 * @param boolean $regex    Optional. Whether the `$format` parameter is in a RegEx format. Default false.
 */
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);
    }
}

WordPress Version: 4.2

/**
 * Adds a URL format and oEmbed provider URL pair.
 *
 * @since 2.9.0
 *
 * @see WP_oEmbed
 *
 * @param string  $format   The format of URL that this provider can handle. You can use asterisks
 *                          as wildcards.
 * @param string  $provider The URL to the oEmbed provider.
 * @param boolean $regex    Optional. Whether the `$format` parameter is in a RegEx format. Default false.
 */
function wp_oembed_add_provider($format, $provider, $regex = false)
{
    require_once ABSPATH . WPINC . '/class-oembed.php';
    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);
    }
}

WordPress Version: 4.1

/**
 * Adds a URL format and oEmbed provider URL pair.
 *
 * @since 2.9.0
 * @see WP_oEmbed
 *
 * @param string $format The format of URL that this provider can handle. You can use asterisks as wildcards.
 * @param string $provider The URL to the oEmbed provider.
 * @param boolean $regex Whether the $format parameter is in a regex format.
 */
function wp_oembed_add_provider($format, $provider, $regex = false)
{
    require_once ABSPATH . WPINC . '/class-oembed.php';
    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);
    }
}

WordPress Version: 4.0

/**
 * Adds a URL format and oEmbed provider URL pair.
 *
 * @since 2.9.0
 * @see WP_oEmbed
 *
 * @uses _wp_oembed_get_object()
 *
 * @param string $format The format of URL that this provider can handle. You can use asterisks as wildcards.
 * @param string $provider The URL to the oEmbed provider.
 * @param boolean $regex Whether the $format parameter is in a regex format.
 */
function wp_oembed_add_provider($format, $provider, $regex = false)
{
    require_once ABSPATH . WPINC . '/class-oembed.php';
    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);
    }
}

WordPress Version: 3.7

/**
 * Adds a URL format and oEmbed provider URL pair.
 *
 * @since 2.9.0
 * @see WP_oEmbed
 *
 * @uses _wp_oembed_get_object()
 *
 * @param string $format The format of URL that this provider can handle. You can use asterisks as wildcards.
 * @param string $provider The URL to the oEmbed provider.
 * @param boolean $regex Whether the $format parameter is in a regex format.
 */
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);
}