wp_embed_handler_audio

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

WordPress Version: 4.6

/**
 * Audio embed handler callback.
 *
 * @since 3.6.0
 *
 * @param array  $matches The RegEx matches from the provided regex when calling wp_embed_register_handler().
 * @param array  $attr Embed attributes.
 * @param string $url The original URL that was matched by the regex.
 * @param array  $rawattr The original unmodified attributes.
 * @return string The embed HTML.
 */
function wp_embed_handler_audio($matches, $attr, $url, $rawattr)
{
    $audio = sprintf('[audio src="%s" /]', esc_url($url));
    /**
     * Filters the audio embed output.
     *
     * @since 3.6.0
     *
     * @param string $audio   Audio embed output.
     * @param array  $attr    An array of embed attributes.
     * @param string $url     The original URL that was matched by the regex.
     * @param array  $rawattr The original unmodified attributes.
     */
    return apply_filters('wp_embed_handler_audio', $audio, $attr, $url, $rawattr);
}

WordPress Version: 4.3

/**
 * Audio embed handler callback.
 *
 * @since 3.6.0
 *
 * @param array  $matches The RegEx matches from the provided regex when calling wp_embed_register_handler().
 * @param array  $attr Embed attributes.
 * @param string $url The original URL that was matched by the regex.
 * @param array  $rawattr The original unmodified attributes.
 * @return string The embed HTML.
 */
function wp_embed_handler_audio($matches, $attr, $url, $rawattr)
{
    $audio = sprintf('[audio src="%s" /]', esc_url($url));
    /**
     * Filter the audio embed output.
     *
     * @since 3.6.0
     *
     * @param string $audio   Audio embed output.
     * @param array  $attr    An array of embed attributes.
     * @param string $url     The original URL that was matched by the regex.
     * @param array  $rawattr The original unmodified attributes.
     */
    return apply_filters('wp_embed_handler_audio', $audio, $attr, $url, $rawattr);
}

WordPress Version: 4.2

/**
 * Audio embed handler callback.
 *
 * @since 3.6.0
 *
 * @param array $matches The RegEx matches from the provided regex when calling wp_embed_register_handler().
 * @param array $attr Embed attributes.
 * @param string $url The original URL that was matched by the regex.
 * @param array $rawattr The original unmodified attributes.
 * @return string The embed HTML.
 */
function wp_embed_handler_audio($matches, $attr, $url, $rawattr)
{
    $audio = sprintf('[audio src="%s" /]', esc_url($url));
    /**
     * Filter the audio embed output.
     *
     * @since 3.6.0
     *
     * @param string $audio   Audio embed output.
     * @param array  $attr    An array of embed attributes.
     * @param string $url     The original URL that was matched by the regex.
     * @param array  $rawattr The original unmodified attributes.
     */
    return apply_filters('wp_embed_handler_audio', $audio, $attr, $url, $rawattr);
}

WordPress Version: 3.9

/**
 * Audio embed handler callback.
 *
 * @since 3.6.0
 *
 * @param array $matches The regex matches from the provided regex when calling {@link wp_embed_register_handler()}.
 * @param array $attr Embed attributes.
 * @param string $url The original URL that was matched by the regex.
 * @param array $rawattr The original unmodified attributes.
 * @return string The embed HTML.
 */
function wp_embed_handler_audio($matches, $attr, $url, $rawattr)
{
    $audio = sprintf('[audio src="%s" /]', esc_url($url));
    /**
     * Filter the audio embed output.
     *
     * @since 3.6.0
     *
     * @param string $audio   Audio embed output.
     * @param array  $attr    An array of embed attributes.
     * @param string $url     The original URL that was matched by the regex.
     * @param array  $rawattr The original unmodified attributes.
     */
    return apply_filters('wp_embed_handler_audio', $audio, $attr, $url, $rawattr);
}

WordPress Version: 3.7

/**
 * Audio embed handler callback.
 *
 * @since 3.6.0
 *
 * @param array $matches The regex matches from the provided regex when calling {@link wp_embed_register_handler()}.
 * @param array $attr Embed attributes.
 * @param string $url The original URL that was matched by the regex.
 * @param array $rawattr The original unmodified attributes.
 * @return string The embed HTML.
 */
function wp_embed_handler_audio($matches, $attr, $url, $rawattr)
{
    $audio = sprintf('[audio src="%s" /]', esc_url($url));
    return apply_filters('wp_embed_handler_audio', $audio, $attr, $url, $rawattr);
}