Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1.     function register_scripts() {
  2.         wp_enqueue_script( 'theme-script', get_template_directory_uri() . '/public/js/main.js', '', null, true );
  3.         wp_localize_script('theme-script', 'tplUrl', array(
  4.             'templateUrl' => get_template_directory_uri()
  5.             ));
  6.     }
  7. add_action( 'wp_enqueue_scripts', 'register_scripts');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement