remove_all_shortcodes

函式
remove_all_shortcodes ( No parameters )

remove_all_shortcodes: 這個函式用來刪除所有使用add_shortcode函式註冊的短程式碼: 當你想從你的主題或外掛中刪除所有的短程式碼時,這個函式很有用。

清除所有的短程式碼。

這個函式通過用一個空陣列替換全域性的短程式碼來清除所有的短程式碼標籤。這實際上是一個刪除所有短程式碼的有效方法。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function remove_all_shortcodes() {
global $shortcode_tags;
$shortcode_tags = array();
}
function remove_all_shortcodes() { global $shortcode_tags; $shortcode_tags = array(); }
function remove_all_shortcodes() {
	global $shortcode_tags;

	$shortcode_tags = array();
}

常見問題

FAQs
檢視更多 >