WP_REST_Post_Statuses_Controller::get_item( WP_REST_Request $request ): WP_REST_Response|WP_Error

In this article

Retrieves a specific post status.

Parameters

$requestWP_REST_Requestrequired
Full details about the request.

Return

WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.

Source

public function get_item( $request ) {
	$obj = get_post_status_object( $request['status'] );

	if ( empty( $obj ) ) {
		return new WP_Error(
			'rest_status_invalid',
			__( 'Invalid status.' ),
			array( 'status' => 404 )
		);
	}

	$data = $this->prepare_item_for_response( $obj, $request );

	return rest_ensure_response( $data );
}

Changelog

VersionDescription
4.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.