WP_REST_Autosaves_Controller::get_item

Advertisement

Summery Summery

Get the autosave, if the ID is valid.

Syntax Syntax

WP_REST_Autosaves_Controller::get_item( WP_REST_Request $request )

Parameters Parameters

$request

(Required) Full details about the request.

Return Return

(WP_Post|WP_Error) Revision post object if ID is valid, WP_Error otherwise.

Source Source

File: wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php

		if ( $parent_id <= 0 ) {
			return new WP_Error(
				'rest_post_invalid_id',
				__( 'Invalid post parent ID.' ),
				array( 'status' => 404 )
			);
		}

		$autosave = wp_get_post_autosave( $parent_id );

		if ( ! $autosave ) {
			return new WP_Error(
				'rest_post_no_autosave',
				__( 'There is no autosave revision for this post.' ),
				array( 'status' => 404 )
			);
		}

		$response = $this->prepare_item_for_response( $autosave, $request );
		return $response;
	}

	/**

Advertisement

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.

Advertisement

Leave a Reply