Last active
November 5, 2015 16:58
-
-
Save cjkoepke/1553b66d51ffcb332eea to your computer and use it in GitHub Desktop.
Add JavaScript file to our body.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* Do NOT include the opening PHP tag | |
/** | |
* Include the JavaScript | |
* @author Calvin Koepke (@cjkoepke) | |
* @link http://www.calvinkoepke.com/add-a-mobile-friendly-off-canvas-menu-in-genesis | |
*/ | |
add_action( 'wp_enqueue_scripts', 'ck_load_menu' ); | |
function ck_load_menu() { | |
wp_enqueue_script( 'ck-menu', get_stylesheet_directory_uri() . '/js/offcanvas-nav.js', array( 'jquery' ), 1.0 ); | |
//* Also include Dashicons for the iconography | |
wp_enqueue_style( 'dashicons' ); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment