我有一个插件的脚本问题,我必须从某个页面停用JS脚本,该脚本在functions.php中
wp_enqueue_script( "helper-js", JS_PATH . 'helper.js', array( 'jquery' ), get_bloginfo('version') , true );
我正试图将其排除在single-room.php
之外答案 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 );
}