Skip to content

Instantly share code, notes, and snippets.

View kholis34's full-sized avatar

Kholis Muhaimin kholis34

View GitHub Profile
@codigoconjuan
codigoconjuan / functions.php
Created March 24, 2017 21:19
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() {
@awshout
awshout / foundation4-section-menu.php
Last active May 5, 2020 20:46
WordPress Menu & Walker for ZURB's Foundation 4 Sections
<?php
add_theme_support('menus');
/**
* http://codex.wordpress.org/Function_Reference/register_nav_menus#Examples
*/
register_nav_menus(array(
'main-menu' => 'Main Menu',
));