WP_REST_Controller::create_item() WordPress Method
The WP_REST_Controller::create_item() method allows you to create a new item for a WordPress site. This is useful for creating new posts, pages, or other content.
WP_REST_Controller::create_item( WP_REST_Request $request ) #
Creates one item from the collection.
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 create_item( $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. |