Guest User

Untitled

a guest
May 25th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. add_action( 'wp_enqueue_scripts', 'load_myjs' );
  2. function load_myjs() {
  3. if( is_page('your-page') ){
  4. wp_register_script('load_my_js',get_template_directory_uri().'/yourjsfilename.js', array('jquery'),'1.1',true);
  5. wp_enqueue_script('load_my_js');
  6. }
  7. }
Add Comment
Please, Sign In to add comment