You appear to be a bot. Output may be restricted
Description
Using a GUID, find a post.
Kept for backward compatibility. Use videopress_get_post_by_guid() instead.
Usage
$WP_Post|false = video_get_post_by_guid( $guid );
Parameters
- $guid
- ( string ) required – The post guid.
Returns
WP_Post|false The post for that guid, or false if none is found.
Source
File name: jetpack/modules/videopress/utility-functions.php
Lines:
1 to 4 of 4
function video_get_post_by_guid( $guid ) { _deprecated_function( __FUNCTION__, 'jetpack-8.4' ); return videopress_get_post_by_guid( $guid ); }