wordpress从页面类型中排除js脚本

时间:2015-06-08 19:21:57

标签: php wordpress

我有一个插件的脚本问题,我必须从某个页面停用JS脚本,该脚本在functions.php中

wp_enqueue_script( "helper-js", JS_PATH . 'helper.js', array( 'jquery' ), get_bloginfo('version') , true );

我正试图将其排除在single-room.php

之外

1 个答案:

答案 0 :(得分:2)

你必须将enqueue包装在检查文件名的条件中,例如

if ( basename( get_page_template() ) !== 'single-room.php') {
    wp_enqueue_script( "helper-js", JS_PATH . 'helper.js', array( 'jquery' ), get_bloginfo('version') , true );
}