Skip to content

Instantly share code, notes, and snippets.

View kholis34's full-sized avatar

Kholis Muhaimin kholis34

View GitHub Profile
@kholis34
kholis34 / functions.php
Created July 10, 2017 14:23 — forked from codigoconjuan/functions.php
Work with Foundation Menu (From JointsWP)
register_nav_menus(
array(
'main-nav' => __( 'The Main Menu', 'jointswp' ), // Main nav in header
'footer-links' => __( 'Footer Links', 'jointswp' ), // Secondary nav in footer
'social_menu' => __( 'Social', 'jointswp' ) // Secondary nav in footer
)
);
// The Off Canvas Menu
function joints_off_canvas_nav() {