NextGen Gallery与Iframe插件有关

时间:2014-02-12 05:26:52

标签: wordpress plugins nextgen-gallery

我在WordPress Nextgen画廊尝试了几个基于iframe的弹出插件。它总是从frame_event_publisher.js文件中生成一个js错误。

无论如何都要阻止在另一个插件中加载这个文件吗?

1 个答案:

答案 0 :(得分:0)

解决此问题的一种方法是强行将脚本出列。您必须添加一个条件才能在需要时将其出列,因为NextGEN可能需要此脚本才能工作。

add_action( 'wp_print_scripts', 'dequeue_frame_event_publisher', 100 );
function dequeue_frame_event_publisher() {
    if ( is_admin() ) { // Add another condition to check if in an iframe.
        wp_dequeue_script( 'frame_event_publisher' );
    }
}