Instantly share code, notes, and snippets.
- Eastern Iowa, USA
awshout
/ foundation4-section-menu.php
Last active
May 5, 2020 20:46
WordPress Menu & Walker for ZURB's Foundation 4 Sections
This file contains 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 | |
add_theme_support('menus'); | |
/** | |
* http://codex.wordpress.org/Function_Reference/register_nav_menus#Examples | |
*/ | |
register_nav_menus(array( | |
'main-menu' => 'Main Menu', | |
)); |
awshout
/ foundation4-topbar-menu.php
Last active
September 5, 2024 01:34
WordPress Menu & Walker for ZURB's Foundation 4 Top Bar
This file contains 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 | |
add_theme_support('menus'); | |
/** | |
* Register Menus | |
* http://codex.wordpress.org/Function_Reference/register_nav_menus#Examples | |
*/ | |
register_nav_menus(array( | |
'top-bar-l' => 'Left Top Bar', // registers the menu in the WordPress admin menu editor | |
'top-bar-r' => 'Right Top Bar' |
awshout
/ foundation3-navbar-menu.php
Last active
October 13, 2021 17:07
WordPress Menu & Walker for ZURB's Foundation 3 Nav Bar
This file contains 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 | |
add_theme_support('menus'); | |
/* | |
http://codex.wordpress.org/Function_Reference/register_nav_menus#Examples | |
*/ | |
register_nav_menus( array( | |
'main-menu' => 'Main Menu' // registers the menu in the WordPress admin menu editor | |
) ); |