wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_embed_handler_audio › WordPress Function
Seit3.6.0
Veraltetn/v
› wp_embed_handler_audio ( $matches, $attr, $url, $rawattr )
| Parameter: (4) |
|
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Audio embed handler callback.
Ähnliche Funktionen: wp_embed_handler_video, wp_embed_handler_youtube, wp_embed_handler_googlevideo, wp_embed_register_handler, wp_embed_defaults
Quellcode
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 );
}