Tribe__Events__Pro__Assets::is_edit_screen()

Check whether the current page is an edit post type page.


Return

(bool)


Top ↑

Source

File: src/Tribe/Assets.php

	public function is_edit_screen() {
		$current_screen = get_current_screen();

		return 'post' === $current_screen->base;
	}

Top ↑

Changelog

Changelog
Version Description
5.11.1 Introduced.