Tribe__Events__REST__V1__Endpoints__Term_Single_Base::can_create()
Whether the current user can create content of the specified type or not.
Return
(bool) Whether the current user can post or not.
Source
File: src/Tribe/REST/V1/Endpoints/Term_Single_Base.php
public function can_create() {
$cap = get_post_type_object( Tribe__Events__Main::POSTTYPE )->cap->edit_posts;
return current_user_can( $cap );
}
Changelog
| Version | Description |
|---|---|
| 4.6 | Introduced. |