WP_REST_Global_Styles_Controller::__construct()publicWP 6.6.0

Constructor.

Method of the class: WP_REST_Global_Styles_Controller{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_REST_Global_Styles_Controller = new WP_REST_Global_Styles_Controller();
$WP_REST_Global_Styles_Controller->__construct( $post_type );
$post_type(string)
Post type.
Default: 'wp_global_styles'

Changelog

Since 6.6.0 Introduced.

WP_REST_Global_Styles_Controller::__construct() code WP 6.6.2

public function __construct( $post_type = 'wp_global_styles' ) {
	parent::__construct( $post_type );
}