您可以使用is_page()
条件函数。
function wpse208799_add_js_to_specific_pages(){
if ( is_page( \'10\' ) ) { // Change the page ID
wp_register_script(
\'handle\',
\'http://urltothescript\',
array(\'jquery\'),
\'1.0\'
);
wp_enqueue_script( \'handle\' );
}
}
add_action( \'wp_enqueue_scripts\', \'wpse208799_add_js_to_specific_pages\' );