如何从 WordPress 的主导航菜单中激活某个项目?

发布于 2024-12-04 03:32:31 字数 172 浏览 1 评论 0原文

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

首页 |活动 |关于 |博客

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

谢谢。

In the Main Header Navigation I have this links:

Home | Events | About | Blog

I want when I go to Blog page and select a post, to be able to make active in the header menu the "Blog" item.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绝情姑娘 2024-12-11 03:32:31
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;
}
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;
}

You can add above code in your active theme functions.php .


CSS

li.active {
    background: #3FAEA5;
    color:#fff;
}
li.active a {
    text-decoration: underline;
    background:#ccc;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文