Skip to content

Instantly share code, notes, and snippets.

@TarttWeb
Created April 5, 2022 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TarttWeb/69141f6cb6f38a609dfbcd7edff72a2d to your computer and use it in GitHub Desktop.
Save TarttWeb/69141f6cb6f38a609dfbcd7edff72a2d to your computer and use it in GitHub Desktop.
WordPress Load Custom JavaScript File Example
<?php
function load_custom_script(){
wp_register_script( 'custom-js', custom.js', false );
wp_enqueue_script( 'custom-js' );
}
add_action( 'wp_enqueue_scripts', 'load_custom_script' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment