wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



remove_all_shortcodes › WordPress Function

Da2.5.0
Deprecaton/a
remove_all_shortcodes ( Nessun parametro )
Definito a:
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.


Sorgenti

function remove_all_shortcodes() {
	global $shortcode_tags;

	$shortcode_tags = array();
}