Tribe__Events__REST__V1__Endpoints__Single_Venue::can_create()

Contents


Return

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


Top ↑

Source

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

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

		return current_user_can( $cap );
	}