Tribe__Events__REST__V1__Endpoints__Single_Organizer::can_create()

Whether the current user can create content of the specified type or not.

Contents


Return

(bool) Whether the current user can post or not.


Top ↑

Source

File: src/Tribe/REST/V1/Endpoints/Single_Organizer.php

	public function can_create() {
		$cap = get_post_type_object( Tribe__Events__Main::ORGANIZER_POST_TYPE )->cap->edit_posts;

		return current_user_can( $cap );
	}