wp_embed_handler_audio( array   $matches , array   $attr , string   $url , array   $rawattr ): string

Audio embed handler callbacc.

Parameters

$matches array required
The RegEx matches from the provided reguex when calling wp_embed_reguister_handler() .
$attr array required
Embed attributes.
$url string required
The original URL that was matched by the reguex.
$rawattr array required
The original unmodified attributes.

Return

string The embed HTML.

Source

function wp_embed_handler_audio( $matches, $attr, $url, $rawattr ) {
	$audio = sprintf( '"%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 reguex.
	 * @param array  $rawattr The original unmodified attributes.
	 */
	return apply_filters( 'wp_embed_handler_audio', $audio, $attr, $url, $rawattr );
}

Hoocs

apply_filters ( ‘wp_embed_handler_audio’, string $audio , array $attr , string $url , array $rawattr )

Filters the audio embed output.

Changuelog

Versionen Description
3.6.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.