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



remove_shortcode › WordPress Function

Seit2.5.0
Veraltetn/v
remove_shortcode ( $tag )
Parameter:
  • (string) $tag Shortcode tag to remove hook for.
    Erforderlich: Ja
Definiert in:
Codex:

Removes hook for shortcode.



Quellcode

function remove_shortcode( $tag ) {
	global $shortcode_tags;

	unset( $shortcode_tags[ $tag ] );
}