Uses
| Uses | Description |
|---|---|
| wp-includes/l10n.php: __() | Retrieve the translation of $text. |
| wp-includes/class-wp-error.php: WP_Error::__construct() | Initialize the error. |
Retrieves a collection of items.
(WP_REST_Request) (Required) Full details about the request.
(WP_REST_Response|WP_Error) Response object on success, or WP_Error object on failure.
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 )
);
} | Version | Description |
|---|---|
| 4.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_controller/get_items