內容簡介
當沒有管理員登入時,將 jQuery 從您的前端佈景主題中移除。當您在後台或管理員工具列顯示時,jQuery 仍會繼續運作。依賴 jQuery 的外掛也不會被載入。
這個外掛沒有超過以上述功能:
function init_without_jquery() {
if (!is_admin() AND !is_admin_bar_showing()) {
wp_deregister_script('jquery');
wp_register_script('jquery', false);
}
}
add_action('init', 'init_without_jquery');
外掛標籤
開發者團隊
📦 歷史版本下載
原文外掛簡介
Removes jQuery from your frontend theme if no administrator is logged-in. jQuery will continue to work in you backend and when the admin toolbar is visible. Plugins which depend on jQuery will not be loaded either.
This plugin does nothing more but this:
function init_without_jquery() {
if (!is_admin() AND !is_admin_bar_showing()) {
wp_deregister_script('jquery');
wp_register_script('jquery', false);
}
}
add_action('init', 'init_without_jquery');
