最合适的回答,由SO网友:D. Dan 整理而成
将其放在if子句中,以便仅在首页加载:
if (is_front_page()){ // you could also try is_home()
//or is_page($the_id_of_home_page = 555) If you know the id of the home page
wp_register_script(\'java1\', get_template_directory_uri() . \'/js/cr-scroll.js\', array( \'jquery\' ));
wp_enqueue_script( \'java1\' );
}
或在特定页面上删除它:
function remove_scroll_js(){
if (is_page($the_id_of_that_page_lets_say = 1001)){
wp_dequeue_script( \'java1\' );
wp_deregister_script( \'java1\' );
}
}
add_action( \'wp_enqueue_scripts\', \'remove_scroll_js\' );