wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_embed_handler_audio › WordPress Function

Depuis3.6.0
Dépréciéen/a
wp_embed_handler_audio ( $matches, $attr, $url, $rawattr )
Paramètres: (4)
  • (array) $matches The RegEx matches from the provided regex when calling wp_embed_register_handler().
    Requis: Oui
  • (array) $attr Embed attributes.
    Requis: Oui
  • (string) $url The original URL that was matched by the regex.
    Requis: Oui
  • (array) $rawattr The original unmodified attributes.
    Requis: Oui
Retourne:
  • (string) The embed HTML.
Défini(e) dans:
Codex:

Audio embed handler callback.



Source

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 );
}