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



remove_all_shortcodes › WordPress Function

Od2.5.0
Przestarzałyn/a
remove_all_shortcodes ( Brak parametrów )
Zdefiniowane na:
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.


Źródło

function remove_all_shortcodes() {
	global $shortcode_tags;

	$shortcode_tags = array();
}