wp_embed_handler_audio()
Audio embed handler callback.
Hooks from the function
Return
String
. The embed HTML.
Usage
wp_embed_handler_audio( $matches, $attr, $url, $rawattr );
- $matches(array) (required)
- The RegEx matches from the provided regex when calling wp_embed_register_handler().
- $attr(array) (required)
- Embed attributes.
- $url(string) (required)
- The original URL that was matched by the regex.
- $rawattr(array) (required)
- The original unmodified attributes.
Changelog
Since 3.6.0 | Introduced. |
wp_embed_handler_audio() wp embed handler audio code WP 6.8
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 ); }