Skip to content

Instantly share code, notes, and snippets.

@apisklov
Created January 21, 2019 17:11
Show Gist options
  • Save apisklov/db2c1556c2d88541933a1482c2e86794 to your computer and use it in GitHub Desktop.
Save apisklov/db2c1556c2d88541933a1482c2e86794 to your computer and use it in GitHub Desktop.
Walker Menu WordPress
<?php
/*
* Class mainMenuWalker
*
* Walker класс для меню
*
*/
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