wp_embed_handler_googlevideo()
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() wp embed handler googlevideo code WP 6.7.1
function wp_embed_handler_googlevideo( $matches, $attr, $url, $rawattr ) { _deprecated_function( __FUNCTION__, '4.6.0' ); return ''; }