WP_REST_Autosaves_Controller::__construct()
Constructor.
{} It's a method of the class: WP_REST_Autosaves_Controller{}
No Hooks.
Return
null
. Nothing.
Usage
$WP_REST_Autosaves_Controller = new WP_REST_Autosaves_Controller(); $WP_REST_Autosaves_Controller->__construct( $parent_post_type );
- $parent_post_type(string) (required)
- Post type of the parent.
Changelog
Since 5.0.0 | Introduced. |
Code of WP_REST_Autosaves_Controller::__construct() WP REST Autosaves Controller:: construct WP 6.0
public function __construct( $parent_post_type ) { $this->parent_post_type = $parent_post_type; $post_type_object = get_post_type_object( $parent_post_type ); $parent_controller = $post_type_object->get_rest_controller(); if ( ! $parent_controller ) { $parent_controller = new WP_REST_Posts_Controller( $parent_post_type ); } $this->parent_controller = $parent_controller; $this->revisions_controller = new WP_REST_Revisions_Controller( $parent_post_type ); $this->rest_base = 'autosaves'; $this->namespace = ! empty( $post_type_object->rest_namespace ) ? $post_type_object->rest_namespace : 'wp/v2'; $this->parent_base = ! empty( $post_type_object->rest_base ) ? $post_type_object->rest_base : $post_type_object->name; }