如果插件很好register 他们所有的剧本都是预先准备好的enqueue 如果需要,您应该能够将所有这些文件排队以随时加载。找出他们注册的句柄并将其排队。
add_action(\'wp_enqueue_script\', function() {
wp_enqueue_script(\'example-handle\');
wp_enqueue_script(\'another-example-handle\');
}, 20);
然而,一些插件通过
wp_enqueue_script()
即使在有条件地加载它们时也会起作用。对于这些脚本,您需要复制这些enqueue语句并修改脚本的路径,以便正确加载它们。
add_action(\'wp_enqueue_script\', function() {
$url = plugins_url(\'js/example.js\', \'example-plugin/x\');
wp_enqueue_script(\'example-handle\', $url /* and any other params they had */);
}, 20);