wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



shortcode_exists › WordPress Function

Seit3.6.0
Veraltetn/v
shortcode_exists ( $tag )
Parameter:
  • (string) $tag Shortcode tag to check.
    Erforderlich: Ja
Gibt zurück:
  • (bool) Whether the given shortcode exists.
Definiert in:
Codex:

Determines whether a registered shortcode exists named $tag.



Quellcode

function shortcode_exists( $tag ) {
	global $shortcode_tags;
	return array_key_exists( $tag, $shortcode_tags );
}