Skip to content

Instantly share code, notes, and snippets.

@dbernar1
Last active December 17, 2015 19:49
Show Gist options
  • Save dbernar1/5662786 to your computer and use it in GitHub Desktop.
Save dbernar1/5662786 to your computer and use it in GitHub Desktop.
Basic wp_enqueue_script
<?php
wp_enqueue_script(
$handle ='my-js',
$src = get_stylesheet_directory_uri() . '/js/my.js',
$deps = array( 'jquery' ),
$ver = '0.01',
$in_footer = true
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment