如何在Wordpress的主导航菜单中激活项目?

时间:2011-09-12 09:10:04

标签: php wordpress menu menuitem

在主标题导航中,我有以下链接:

  

主页|活动|关于|博客

我希望当我转到博客页面并选择帖子时,可以在标题菜单中激活 “博客” 项目。

感谢。

1 个答案:

答案 0 :(得分:0)

add_filter('nav_menu_css_class' , 'custom_nav_class' , 10 , 2);
function custom_nav_class ($classes, $item) {
    if (in_array('current-menu-item', $classes) ){
        $classes[] = 'active ';
    }
    return $classes;
}

您可以在活动主题functions.php中添加以上代码。

CSS

li.active {
    background: #3FAEA5;
    color:#fff;
}
li.active a {
    text-decoration: underline;
    background:#ccc;
}