Skip to content

Instantly share code, notes, and snippets.

@apisklov
Last active February 16, 2019 07:48
Show Gist options
  • Save apisklov/c23e01a1e390dd61769fe07f889c5f7c to your computer and use it in GitHub Desktop.
Save apisklov/c23e01a1e390dd61769fe07f889c5f7c to your computer and use it in GitHub Desktop.
wp_nav_menu with walker
<?php $args = array(
'theme_location' => 'header',
'container'=> false,
'container_class' => '',
'menu_class' => 'mobile__menu',
'menu_id' => 'mobile__menu',
'walker' => new mobileMenuWalker(),
);
wp_nav_menu($args);
class mainMenuWalker extends Walker_Nav_Menu {
function start_el(&$output, $item, $depth=0, $args=array(), $id = 0) {
// назначаем атрибуты a-элементу
$attributes.= !empty( $item->url ) ? ' href="' .esc_attr($item->url). '"' : '';
// проверяем, на какой странице мы находимся
$current_url = (is_ssl()?'https://':'http://').$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
$item_url = esc_attr( $item->url );
$item_type = $item->type;
if ( $item_url != $current_url ) {
$current = "";
$item_output.= '<a class="nav__link"'. $attributes .'>'.$item->title.'</a>';
}
else {
$current = " active";
$item_output.= $item->title;
}
// назначаем классы li-элементу и выводим его
$output.= '<li class="nav__item' .$current.'">';
// заканчиваем вывод элемента
$item_output.= $args->after;
$output.= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment