All Projects → rickbutterfield → FoundationNavWalker

rickbutterfield / FoundationNavWalker

Licence: other
A simple extension of wp_nav_menu to support Foundation 5's offcanvas nav

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to FoundationNavWalker

mesh
A page builder, simplified. Get the most flexibility to display content by adding multiple content sections within Pages, Posts, or Custom Post Types.
Stars: ✭ 44 (+158.82%)
Mutual labels:  foundation
OperationPlus
NSOperation's missing pieces
Stars: ✭ 119 (+600%)
Mutual labels:  foundation
curry
curry is a framework built to enhance and compliment Foundation and UIKit.
Stars: ✭ 47 (+176.47%)
Mutual labels:  foundation
reactive.foundation
reactive.foundation website
Stars: ✭ 18 (+5.88%)
Mutual labels:  foundation
tools-android
Objective-C on Android with Foundation, CoreFoundation, and libdispatch.
Stars: ✭ 38 (+123.53%)
Mutual labels:  foundation
kiva
Ground heat transfer calculation tool
Stars: ✭ 23 (+35.29%)
Mutual labels:  foundation
Swift Essentials
A set of essential Swift stuff I use in every single iOS app.
Stars: ✭ 223 (+1211.76%)
Mutual labels:  foundation
Sukari
🍯 Sweet Syntactical Sugar For Swift
Stars: ✭ 30 (+76.47%)
Mutual labels:  foundation
fnd-docs
Foundation developer docs
Stars: ✭ 33 (+94.12%)
Mutual labels:  foundation
tb-grid
tb-grid is a super simple and lightweight 12 column responsive grid system utilizing css grid.
Stars: ✭ 19 (+11.76%)
Mutual labels:  foundation
Swift-ISO8601-DurationParser
Swift ISO8601 Parser
Stars: ✭ 24 (+41.18%)
Mutual labels:  foundation
foundation-server
(v1) A scalable cryptocurrency mining pool server written in Node.js
Stars: ✭ 45 (+164.71%)
Mutual labels:  foundation
Foundation
My Software BASE
Stars: ✭ 48 (+182.35%)
Mutual labels:  foundation
extensions-kit
📦 Collection of Swift+Apple Frameworks extensions for speeding up software development [iOS & iPadOS].
Stars: ✭ 71 (+317.65%)
Mutual labels:  foundation
foundation
This is a mirror from https://github.com/laravel/framework/tree/9.x/src/Illuminate/Foundation
Stars: ✭ 26 (+52.94%)
Mutual labels:  foundation
Scipio Erp
Your Online Business Kit - Build your own business applications. Create your own online shop. Customize to your own needs.
Stars: ✭ 247 (+1352.94%)
Mutual labels:  foundation
heisenberg
Zeek WordPress starter theme based on _s and Foundation
Stars: ✭ 77 (+352.94%)
Mutual labels:  foundation
ProcessEnv
Capture the shell environment of a Foundation app
Stars: ✭ 16 (-5.88%)
Mutual labels:  foundation
Objective-CPP
C++ compatibility library for Objective-C - Objective-CPP is a library intended to ease software development using Objective-C++. It declares categories on Objective-C classes, to work with the STL C++ types, such as std::string, std::vector, etc.
Stars: ✭ 37 (+117.65%)
Mutual labels:  foundation
Neslib
Delphi utilities shared with other Neslib repositories
Stars: ✭ 33 (+94.12%)
Mutual labels:  foundation

Foundation nav walker for WordPress

This is a simple extension of WordPress' built in wp_nav_menu to give support for Foundation 5's offscreen nav

Installation

Copy the full contents of the file into your functions.php file, or copy the file to your theme directory and call it from functions.php with require get_template_directory() . '/FoundationNavWalker.class.php';

Normal usage within a theme

<?php
	$defaults = array(
		'container'   => false,
		'menu_class'  => 'off-canvas-list',
		'walker'      => new FoundationNavWalker()
	);

	wp_nav_menu( $defaults );
?>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].