Skip to content

Instantly share code, notes, and snippets.

View TheoKoenig's full-sized avatar
🦜
Focusing

Théo Koenig TheoKoenig

🦜
Focusing
View GitHub Profile
@TheoKoenig
TheoKoenig / sub-menu-wrap
Last active July 31, 2020 13:56 — forked from fieldoffice/sub-menu-wrap
Wordpress - add div wrapper around sub-menu
/* EXTEND SUBNAV
******************************************/
class submenu_wrap extends Walker_Nav_Menu {
function start_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
$output .= "\n$indent<div class='sub-menu-section'><div class='sub-menu-row'><ul class='sub-menu'>\n";
}
function end_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);