Created
January 21, 2019 17:11
-
-
Save apisklov/db2c1556c2d88541933a1482c2e86794 to your computer and use it in GitHub Desktop.
Walker Menu WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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