WP_REST_Controller::get_items() WordPress Method
The WP_REST_Controller::get_items() method is used to retrieve a list of items from a WordPress site. This method can be used to get posts, pages, comments, etc. from a WordPress site.
WP_REST_Controller::get_items( WP_REST_Request $request ) #
Retrieves a collection of items.
Parameters
- $request
(WP_REST_Request)(Required)Full details about the request.
Return
(WP_REST_Response|WP_Error) Response object on success, or WP_Error object on failure.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-controller.php
public function get_items( $request ) {
return new WP_Error(
'invalid-method',
/* translators: %s: Method name. */
sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ),
array( 'status' => 405 )
);
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 4.7.0 | Introduced. |