wp_embed_handler_googlevideo( $matches,  $attr,  $url,  $rawattr ): string

In this article

This function has been deprecated.

The Google Video embed handler callback.

Description

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

Return

string An empty string.

Source

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

	return '';
}

Changelog

VersionDescription
4.6.0This function has been deprecated.
2.9.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.