需要向自定义WordPress导航菜单添加“活动”类

时间:2019-06-27 22:10:44

标签: php wordpress menu bootstrap-4 navigation

我正在使用WordPress中的内置导航菜单创建自己的超级菜单。为标准菜单项和具有大型菜单的菜单项显示不同的代码非常有用。但我希望能够引用活动菜单项并将活动类添加到该列表项。

我只是不确定下面的代码,我需要放在哪里?

// if there are items in the primary menu
if ( $items = wp_get_nav_menu_items( $menu->name ) ) {
// loop through all menu items to display their content
foreach ( $items as $item ) {
// if the current item is not a top level item, skip it
if ($item->menu_item_parent != 0) {
    continue;
}

// get the ID of the current nav item
$curNavItemID = $item->ID;
// get the custom classes for the item
// (determined within the WordPress Appearance > Menu section)
$classList = implode(" ", $item->classes);
    echo "<li class=\"nav-item {$classList}\">";                     
if ( in_array('has-mega-menu', $item->classes)) {
    echo "<a class=\"nav-link dropdown-toggle\" href=\"{$item->url}\" id=\"navbarDropdown\" role=\"button\" data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">{$item->title}</a>\n";
}
else  {
    echo "<a class=\"nav-link\" href=\"{$item->url}\">{$item->title}</a>";
}

[编辑]

我知道在此行之后需要添加一些内容

$classList = implode(" ", $item->classes);
echo "<li class=\"nav-item {$classList}\">";                     

引用当前页面的内容

if ( [ ???? current page or current menu ???? ] 
echo "<li class=\"nav-item active {$classList}\">";

如何引用当前页面?

或者如何将标准的WordPress类添加到所有菜单项中,然后可以在CSS文件中引用它。


解决方案

我找到了解决方法。

我添加了这个

// get the current page URL
$actual_link = ( isset( $_SERVER['HTTPS'] ) ? "https" : "http" ) . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";

之前

// get the ID of the current nav item
$curNavItemID = $item->ID;

,然后通过更改此行来引用它

echo "<li class=\"nav-item {$classList}\">";

对此

echo "<li class=\"nav-item ";
if ( $actual_link == $item->url ) {
echo 'active';
}
echo " {$classList}\">";

“活动”类现已添加到URL与浏览器窗口URL匹配的任何菜单项。即:“当前页面”。

我敢肯定有一种更优雅的方法可以做到这一点-但这似乎可以满足我的需求。

1 个答案:

答案 0 :(得分:-1)

将此添加到您的CSS文件中

ul.nav-menu li.current-menu-item > a {
    color: #f7931d !important;
}
li.current-menu-parent >a, .current-menu-item >a {
    color: #f7931d !important;
}