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



remove_all_shortcodes › WordPress Function

Seit2.5.0
Veraltetn/v
remove_all_shortcodes ( Keine Parameter )
Definiert in:
Codex:

Clears all shortcodes.

This function clears all of the shortcode tags by replacing the shortcodes global with an empty array. This is actually an efficient method for removing all shortcodes.


Quellcode

function remove_all_shortcodes() {
	global $shortcode_tags;

	$shortcode_tags = array();
}