WP_REST_Posts_Controller::get_post() WordPress Method
The WP_REST_Posts_Controller::get_post() method is used to retrieve a single post from the WordPress database. This method can be used to get a post by its ID, slug, or post_name.
WP_REST_Posts_Controller::get_post( int $id ) #
Get the post, if the ID is valid.
Parameters
- $id
(int)(Required)Supplied ID.
Return
(WP_Post|WP_Error) Post object if ID is valid, WP_Error otherwise.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
protected function get_post( $id ) { $error = new WP_Error( 'rest_post_invalid_id', __( 'Invalid post ID.' ), array( 'status' => 404 ) ); if ( (int) $id <= 0 ) { return $error; } $post = get_post( (int) $id ); if ( empty( $post ) || empty( $post->ID ) || $this->post_type !== $post->post_type ) { return $error; } return $post; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.7.2 | Introduced. |