有一种方法,但不建议这样做,因为排队的脚本可能附加了其他一些内联脚本。你可以挂到wp_enqueue_scripts
操作并清空全局$wp_scripts
具体如下:
add_action( \'wp_enqueue_scripts\', \'remove_all_scripts\', 1000 );
function remove_all_scripts() {
global $wp_scripts;
$wp_scripts->queue = array();
}
然后,您可以运行一个循环并排队对其执行您想要的任何操作。