Get the revision, if the ID is valid.
Parameters
$id
intrequired- Supplied ID.
Source
protected function get_revision( $id ) {
$error = new WP_Error(
'rest_post_invalid_id',
__( 'Invalid revision ID.' ),
array( 'status' => 404 )
);
if ( (int) $id <= 0 ) {
return $error;
}
$revision = get_post( (int) $id );
if ( empty( $revision ) || empty( $revision->ID ) || 'revision' !== $revision->post_type ) {
return $error;
}
return $revision;
}
Changelog
Version | Description |
---|---|
4.7.2 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.