21 lines
579 B
PHP
21 lines
579 B
PHP
<?php
|
|
/**
|
|
* Customize the output of menus for Foundation top bar
|
|
*
|
|
* @package Biofriction
|
|
* @since Biofriction 1.0.0
|
|
*/
|
|
|
|
/**
|
|
* Big thanks to Brett Mason (https://github.com/brettsmason) for the awesome walker
|
|
*/
|
|
|
|
if ( ! class_exists( 'Foundationpress_Center_Top_Bar_Walker' ) ) :
|
|
class Foundationpress_Center_Top_Bar_Walker extends Walker_Nav_Menu {
|
|
function start_lvl( &$output, $depth = 0, $args = array() ) {
|
|
$indent = str_repeat( "\t", $depth );
|
|
$output .= "\n$indent<ul id=\"menu-center-top\" class=\"dropdown menu vertical\" data-toggle>\n";
|
|
}
|
|
}
|
|
endif;
|