您可以看到插件嵌入了漂移代码by hooking wp_head:
// Add the Drift Javascript
add_action(\'wp_head\', \'add_drift\');
所以你需要做的就是
remove_action( \'wp_head\', \'add_drift\' );
当您在主页上时,例如在
if (is_home())
或
if (is_front_page())
阻止(
they\'re more or less equivalent here) 在你的主题中,它将在插件之后加载。或者,在调用wp\\u head()之前,您甚至可以将其放在主页模板的顶部。