Skip to content

Instantly share code, notes, and snippets.

@romuloctba
Created March 2, 2015 19:28
Show Gist options
  • Save romuloctba/b7605729a7de4eabfd01 to your computer and use it in GitHub Desktop.
Save romuloctba/b7605729a7de4eabfd01 to your computer and use it in GitHub Desktop.
Enqueue and add javascript to wordpress themes
<?php
function loadScripts() {
wp_register_script( 'main', get_template_directory_uri() . '/js/main.js', array( 'jquery' ) );
wp_enqueue_script( 'main' );
}
add_action( 'wp_enqueue_scripts', 'loadScripts' );
//don't even bother to close the php tag!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment