Changeset 37744 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 06/18/2016 09:46:17 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r37702 r37744 3741 3741 return $text; 3742 3742 } 3743 3744 /** 3745 * The Google Video embed handler callback. 3746 * 3747 * Deprecated function that previously assisted in turning Google Video URLs 3748 * into embeds but that service has since been shut down. 3749 * 3750 * @since 2.9.0 3751 * @deprecated 4.6.0 3752 * 3753 * @return string An empty string. 3754 */ 3755 function wp_embed_handler_googlevideo( $matches, $attr, $url, $rawattr ) { 3756 _deprecated_function( __FUNCTION__, '4.6.0' ); 3757 3758 return ''; 3759 }
Note: See TracChangeset
for help on using the changeset viewer.