WP_REST_Post_Statuses_Controller::get_items()publicWP 4.7.0

Retrieves all post statuses, depending on user context.

Метод класса: WP_REST_Post_Statuses_Controller{}

Хуков нет.

Возвращает

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

Использование

$WP_REST_Post_Statuses_Controller = new WP_REST_Post_Statuses_Controller();
$WP_REST_Post_Statuses_Controller->get_items( $request );
$request(WP_REST_Request) (обязательный)
Full details about the request.

Список изменений

С версии 4.7.0 Введена.

Код WP_REST_Post_Statuses_Controller::get_items() WP 6.4.3

public function get_items( $request ) {
	$data              = array();
	$statuses          = get_post_stati( array( 'internal' => false ), 'object' );
	$statuses['trash'] = get_post_status_object( 'trash' );

	foreach ( $statuses as $slug => $obj ) {
		$ret = $this->check_read_permission( $obj );

		if ( ! $ret ) {
			continue;
		}

		$status             = $this->prepare_item_for_response( $obj, $request );
		$data[ $obj->name ] = $this->prepare_response_for_collection( $status );
	}

	return rest_ensure_response( $data );
}