wp_embed_handler_video() WordPress Function

wp_embed_handler_video() is a function used by WordPress to handle embedding videos. This function is used when a user embeds a video into a WordPress post or page.

wp_embed_handler_video( array $matches, array $attr, string $url, array $rawattr ) #

Video embed handler callback.


Parameters

$matches

(array)(Required)The RegEx matches from the provided regex when calling wp_embed_register_handler().

$attr

(array)(Required)Embed attributes.

$url

(string)(Required)The original URL that was matched by the regex.

$rawattr

(array)(Required)The original unmodified attributes.


Top ↑

Return

(string) The embed HTML.


Top ↑

Source

File: wp-includes/embed.php

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


Top ↑

Changelog

Changelog
VersionDescription
3.6.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.