您只需确定他们正在排队的脚本句柄,就可以dequeue it yourself 并防止其被加载。我下载了插件并查看了一下,我猜(我还没有测试)lightbox脚本是jquery。全屏-0.4.1。js,它被加载到照片库的第2448行。php
function my_lightbox_prevention() {
wp_dequeue_script( \'jquery-fullscreen\' );
wp_deregister_script( \'jquery-fullscreen\' );
}
add_action( \'wp_print_scripts\', \'my_lightbox_prevention\', 100 );
将其添加到函数中。php和它应该做到这一点。您可能还需要将其他几个脚本出列,但这至少应该为您指明正确的方向。