WP_REST_Templates_Controller::__construct()
Constructor.
Метод класса: WP_REST_Templates_Controller{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WP_REST_Templates_Controller = new WP_REST_Templates_Controller(); $WP_REST_Templates_Controller->__construct( $post_type );
- $post_type(строка) (обязательный)
- Post type.
Список изменений
С версии 5.8.0 | Введена. |
Код WP_REST_Templates_Controller::__construct() WP REST Templates Controller:: construct WP 6.6.1
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'; }