Guest User

Untitled

a guest
Dec 12th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. function my_theme_enqueue_script()
  3. {
  4. /* Enqueue local script */
  5. wp_enqueue_script( 'my-theme-scripts', get_template_directory_uri() . '/public/js/app.js', array(), '1.0.0', true );
  6. }
  7.  
  8. add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_script' );
  9. ?>
Add Comment
Please, Sign In to add comment