wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_embed_handler_audio › WordPress Function

Since3.6.0
已弃用n/a
wp_embed_handler_audio ( $matches, $attr, $url, $rawattr )
参数: (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
返回:
  • (string) The embed HTML.
定义在:
文档:

Audio embed handler callback.



源码

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