Skip to content

Instantly share code, notes, and snippets.

@cobaltapps
Created September 13, 2017 14:38
Show Gist options
  • Save cobaltapps/fbe38a9ed7215a0b0523250e765e9bca to your computer and use it in GitHub Desktop.
Save cobaltapps/fbe38a9ed7215a0b0523250e765e9bca to your computer and use it in GitHub Desktop.
Use the following code inside the function hooked into wp_enqueue_scripts inside your Child Theme's functions.php file.
/* # Custom Scripts
* To add custom scripts just create a scripts.js file in your root
* child theme folder and use the code below to enqueue it.
*/
wp_enqueue_script( 'freelancer-child-scripts', get_stylesheet_directory_uri() . '/scripts.js', array( 'jquery' ), FREELANCER_CHILD_THEME_VERSION, true );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment