如果我知道你想使用W3提供的小型CSS,而不是JS?
要执行此操作,请将此添加到wp_head
跑步。
<?php
remove_action(\'wp_head\', \'wp_print_scripts\');
remove_action(\'wp_head\', \'wp_print_head_scripts\', 9);
remove_action(\'wp_head\', \'wp_enqueue_scripts\', 1);
wp_head();
这将删除所有JS wich W3打印
它将删除在中注册的所有JS
wp_enqueue_script
*未测试