Skip to content

Instantly share code, notes, and snippets.

@AlexandrKutsenko
Created May 21, 2018 09:13
Show Gist options
  • Save AlexandrKutsenko/09ec5c0309c6db6ecf5acfb286bc7132 to your computer and use it in GitHub Desktop.
Save AlexandrKutsenko/09ec5c0309c6db6ecf5acfb286bc7132 to your computer and use it in GitHub Desktop.
Register theme scripts
/*
* Register theme scripts
*/
function register_scripts() {
wp_enqueue_script('main-theme-js-scripts', get_template_directory_uri() . '/assets/js/home.js', array('jquery'), null, true);
}
add_filter('wp_enqueue_scripts', 'register_scripts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment