Skip to content

Instantly share code, notes, and snippets.

@bradpotter
Last active December 20, 2015 20:28
Show Gist options
  • Save bradpotter/6190367 to your computer and use it in GitHub Desktop.
Save bradpotter/6190367 to your computer and use it in GitHub Desktop.
Enqueue Mobile Menu Script
/**
* Register and Enqueue Mobile Navigation Menu script
*
* @author Brad Potter
*
* @link http://www.bradpotter.com
*/
function gst_mobilemenu_script() {
wp_register_script( 'mobile-menu', get_stylesheet_directory_uri() . '/js/mobilemenu.js', array('jquery'), '1.0.0', false );
wp_enqueue_script( 'mobile-menu' );
}
add_action('wp_enqueue_scripts', 'gst_mobilemenu_script');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment