wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



remove_shortcode › WordPress Function

Od2.5.0
Przestarzałyn/a
remove_shortcode ( $tag )
Parametry:
  • (string) $tag Shortcode tag to remove hook for.
    Wymagane: Tak
Zdefiniowane na:
Codex:

Removes hook for shortcode.



Źródło

function remove_shortcode( $tag ) {
	global $shortcode_tags;

	unset( $shortcode_tags[ $tag ] );
}