当然有。
https://codex.wordpress.org/Function_Reference/wp_dequeue_script
/**
* Dequeue the jQuery UI script.
*
* Hooked to the wp_print_scripts action, with a late priority (100),
* so that it is after the script was enqueued.
*/
function wpdocs_dequeue_script() {
wp_dequeue_script( \'jquery-ui-core\' );
}
add_action( \'wp_print_scripts\', \'wpdocs_dequeue_script\', 100 );
显然要更换
jquery-ui-core
使用要删除的脚本的处理程序。不要在全局范围内这样做,只针对发生冲突的插件页面。