我怎樣才能停止加載本網站deeswholefoods.com quick-style.css?它減緩了整個網站。停止加載css文件
<link rel="stylesheet" id="quick-style-css" href="http://deeswholefoods.com/wp-content/themes/organic-life/quick-style.php?ver=4.3.1" type="text/css" media="all">
我已經嘗試將下面的代碼添加到function.php以防止加載css文件。不幸的是,它沒有奏效。
function dequeue_my_css() {
wp_dequeue_style('quick-style-css');
wp_deregister_style('quick-style-css');
}
add_action('wp_enqueue_scripts','dequeue_quick-style-css');
// add a priority if you need it
// add_action('wp_enqueue_scripts','dequeue_quick-style-css',100);
// Register Style
function custom_styles() {
wp_deregister_style('quick-style-css');
wp_register_style('quick-style-css', '', false, false);
}
add_action('wp_enqueue_scripts', 'custom_styles');
你知道我還能試試嗎?
你嘗試編輯你的主題的header.php? (wp-content/themes/organic-life/header.php) –