wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



wp_embed_handler_audio › WordPress Function

Desde3.6.0
Obsoleton/a
wp_embed_handler_audio ( $matches, $attr, $url, $rawattr )
Parâmetros: (4)
  • (array) $matches The RegEx matches from the provided regex when calling wp_embed_register_handler().
    Required: Yes
  • (array) $attr Embed attributes.
    Required: Yes
  • (string) $url The original URL that was matched by the regex.
    Required: Yes
  • (array) $rawattr The original unmodified attributes.
    Required: Yes
Retorna:
  • (string) The embed HTML.
Definido em:
Codex:

Audio embed handler callback.



Fonte

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