Skip to content

Instantly share code, notes, and snippets.

@vikastyagi87
Last active July 20, 2020 19:07
Show Gist options
  • Save vikastyagi87/cf82ee676711df90b6e355711b370ebd to your computer and use it in GitHub Desktop.
Save vikastyagi87/cf82ee676711df90b6e355711b370ebd to your computer and use it in GitHub Desktop.
Add Custom JavaScript to Your WordPress Site
//Load JavaScript file for front end from child theme
function my_scripts_method() {
wp_enqueue_script('custom-script', get_stylesheet_directory_uri() . '/js/custom-script.js', array( 'jquery' )
);
}
add_action( 'wp_enqueue_scripts', 'my_scripts_method' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment