Skip to content

Instantly share code, notes, and snippets.

View alexstandiford's full-sized avatar

Alex Standiford alexstandiford

View GitHub Profile
@alexstandiford
alexstandiford / barebones-walker.php
Last active November 4, 2016 10:16
Basic Nav Menu Walker Structure for custom WordPress themes.
<?php
class myWalker extends Walker_Nav_Menu {
// Displays start of a level. E.g '<ul>'
// @see Walker::start_lvl()
function start_lvl(&$output, $depth=0, $args=[]) {
$output .= '<ul>';
}
// Displays end of a level. E.g '</ul>'
// @see Walker::end_lvl()
function end_lvl(&$output, $depth=0, $args=[]) {