Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. add_action( 'wp_enqueue_scripts', 'bdev_adding_scripts' );
  2. function bdev_adding_scripts() {
  3. wp_register_script('test_script', plugins_url('test_script.js', __FILE__), array('jquery'),'1.1', true);
  4. wp_enqueue_script('test_script');
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement