Tribe__Admin__Notices::exists( string $slug )

Checks if a given notice exists


Parameters

$slug

(string) (Required)


Top ↑

Return

(bool)


Top ↑

Source

File: src/Tribe/Admin/Notices.php

	public function exists( $slug ) {
		return is_object( $this->get( $slug ) ) ? true : false;
	}

Top ↑

Changelog

Changelog
Version Description
4.3 Introduced.