Summery Summery
Audio embed handler callback.
Syntax Syntax
Parameters Parameters
- $matches
-
(Required) The RegEx matches from the provided regex when calling wp_embed_register_handler().
- $attr
-
(Required) Embed attributes.
- $url
-
(Required) The original URL that was matched by the regex.
- $rawattr
-
(Required) The original unmodified attributes.
Return Return
(string) The embed HTML.
Source Source
File: wp-includes/embed.php
/** * 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 ); } /** * Video embed handler callback.
Advertisement
Changelog Changelog
Version | Description |
---|---|
3.6.0 | Introduced. |