wp_embed_handler_googlevideo()WP 2.9.0

Deprecated from version 4.6.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

The Google Video embed handler callback.

Deprecated function that previously assisted in turning Google Video URLs into embeds but that service has since been shut down.

No Hooks.

Return

String. An empty string.

Usage

wp_embed_handler_googlevideo( $matches, $attr, $url, $rawattr );
$matches (required)
-
$attr (required)
-
$url (required)
-
$rawattr (required)
-

Changelog

Since 2.9.0 Introduced.
Deprecated since 4.6.0

wp_embed_handler_googlevideo() code WP 6.5.2

function wp_embed_handler_googlevideo( $matches, $attr, $url, $rawattr ) {
	_deprecated_function( __FUNCTION__, '4.6.0' );

	return '';
}