wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_embed_handler_video › WordPress Function

Seit3.6.0
Veraltetn/v
wp_embed_handler_video ( $matches, $attr, $url, $rawattr )
Parameter: (4)
  • (array) $matches The RegEx matches from the provided regex when calling wp_embed_register_handler().
    Erforderlich: Ja
  • (array) $attr Embed attributes.
    Erforderlich: Ja
  • (string) $url The original URL that was matched by the regex.
    Erforderlich: Ja
  • (array) $rawattr The original unmodified attributes.
    Erforderlich: Ja
Gibt zurück:
  • (string) The embed HTML.
Definiert in:
Codex:

Video embed handler callback.



Quellcode

function wp_embed_handler_video( $matches, $attr, $url, $rawattr ) {
	$dimensions = '';
	if ( ! empty( $rawattr['width'] ) && ! empty( $rawattr['height'] ) ) {
		$dimensions .= sprintf( 'width="%d" ', (int) $rawattr['width'] );
		$dimensions .= sprintf( 'height="%d" ', (int) $rawattr['height'] );
	}
	$video = sprintf( '[video %s src="%s" /]', $dimensions, esc_url( $url ) );

	/**
	 * Filters the video embed output.
	 *
	 * @since 3.6.0
	 *
	 * @param string $video   Video 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_video', $video, $attr, $url, $rawattr );
}