WP_REST_Templates_Controller::__construct() WordPress Method
The WP_REST_Templates_Controller::__construct() method initializes the class and registers all required actions and filters.
WP_REST_Templates_Controller::__construct( string $post_type ) #
Constructor.
Parameters
- $post_type
(string)(Required)Post type.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php
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'; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.8.0 | Introduced. |