wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



remove_all_shortcodes › WordPress Function

Desde2.5.0
Obsoleton/a
remove_all_shortcodes ( Sem parâmetros )
Definido em:
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.


Fonte

function remove_all_shortcodes() {
	global $shortcode_tags;

	$shortcode_tags = array();
}