WP_REST_Posts_Controller::__construct()publicWP 4.7.0

Constructor.

Method of the class: WP_REST_Posts_Controller{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_REST_Posts_Controller = new WP_REST_Posts_Controller();
$WP_REST_Posts_Controller->__construct( $post_type );
$post_type(string) (required)
Post type.

Changelog

Since 4.7.0 Introduced.

WP_REST_Posts_Controller::__construct() code WP 6.4.3

public function __construct( $post_type ) {
	$this->post_type = $post_type;
	$obj             = get_post_type_object( $post_type );
	$this->rest_base = ! empty( $obj->rest_base ) ? $obj->rest_base : $obj->name;
	$this->namespace = ! empty( $obj->rest_namespace ) ? $obj->rest_namespace : 'wp/v2';

	$this->meta = new WP_REST_Post_Meta_Fields( $this->post_type );
}