Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function load_scripts() {
  2.     wp_enqueue_style( 'style-name', get_stylesheet_uri() );
  3.     wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/myscript.js', array(), '1.0.0', true );
  4. }
  5. add_action( 'wp_enqueue_scripts', 'load_scripts' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement