我可以向 WordPress 的
  • 输出添加一个类吗? wp_nav_menu() 函数?
  • 发布于 2024-10-05 22:24:24 字数 193 浏览 1 评论 0原文

    我使用的是网格布局,菜单中的所有链接都需要类 grid_1,但 WordPress 会自动生成类 page_item page-item-#。如何将我的班级添加到 li 中?我知道我可以在 .page_item 下向我的样式表添加一个条目,但我觉得这比应有的更混乱。

    提前致谢!

    I'm using a grid layout, and all the links in my menu need the class grid_1, but WordPress automatically generates the classes page_item page-item-#. How can I add my class to the li? I'm aware that I could alternately add an entry under .page_item to my stylesheet, but I feel like that's more messy than it should be.

    Thanks in advance!

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

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

    发布评论

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

    评论(1

    梦回梦里 2024-10-12 22:24:24

    没有办法,但您可以将自定义类添加到 ul 并使用它来定位您的 li。

    $args = array(
    'menu_class' => 'myclass'
    );
    
    wp_nav_menu($args);
    

    There's not a way but you can add a custom class to the ul and use that to target your li's.

    $args = array(
    'menu_class' => 'myclass'
    );
    
    wp_nav_menu($args);
    
    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文