1if( is_page( array( 'about-us', 'contact', 'management' ) ) ){
2 wp_enqueue_script( 'script-name', 'path/to/example.js', array(), '1.0.0', true );
3}
1if( is_front_page() ){
2 wp_enqueue_script( 'script-name', 'path/to/example.js', array(), '1.0.0', true );
3}