WP_REST_Templates_Controller::__construct( string $post_type )

In this article

Constructor.

Parameters

$post_typestringrequired
Post type.

Source

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';
}

Changelog

VersionDescription
5.8.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.