Warning: This function has been deprecated.

wp_embed_handler_googlevideo() WordPress Function

The wp_embed_handler_googlevideo function allows you to embed a Google video in your WordPress site. This function adds the necessary markup to display the video on your site.

wp_embed_handler_googlevideo( $matches,  $attr,  $url,  $rawattr ) #

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.


Top ↑

Return

(string) An empty string.


Top ↑

Source

File: wp-includes/deprecated.php

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

	return '';
}


Top ↑

Changelog

Changelog
VersionDescription
4.6.0This function has been deprecated.
2.9.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.

Show More