Uses
Uses | Description |
---|---|
wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php: WP_REST_Post_Meta_Fields::__construct() | Constructor. |
wp-includes/post.php: get_post_type_object() | Retrieves a post type object by name. |
Constructor.
(string) (Required) Post type.
File: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
public function __construct( $post_type ) { $this->post_type = $post_type; $this->namespace = 'wp/v2'; $obj = get_post_type_object( $post_type ); $this->rest_base = ! empty( $obj->rest_base ) ? $obj->rest_base : $obj->name; $this->meta = new WP_REST_Post_Meta_Fields( $this->post_type ); }
Version | Description |
---|---|
4.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_posts_controller/__construct