点击后关闭菜单

发布于 2025-01-13 11:06:22 字数 106 浏览 0 评论 0原文

我建立了一个网站(friedl-bau.at),但我希望移动版本上的菜单在单击类别后消失。例如,如果我单击“Sehenswer”,我希望关闭菜单。我正在使用 inspiro 主题。有什么解决办法吗?

I built a website (friedl-bau.at), but I want the menu on the mobile version to dissappear after clicking on a category. So for example if I click on "Sehenswert", I want the menu to be closed. I am using the inspiro theme. Any solutions?

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

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

发布评论

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

评论(1

司马昭之心 2025-01-20 11:06:23

复制&将此代码粘贴到您的主题functions.php 文件中:

add_action("wp_head", "prefix_hide_mobile_menu_onclick");

function prefix_hide_mobile_menu_onclick() {
  ?>
    <script type="text/javascript">
        jQuery(document).ready(function($) {
            $('#menu-menue .menu-item').click(function() {
               $('body').removeClass('side-nav-open');
            });             
        });
    </script>
  <?php
}

Copy & Paste this code into your theme functions.php file :

add_action("wp_head", "prefix_hide_mobile_menu_onclick");

function prefix_hide_mobile_menu_onclick() {
  ?>
    <script type="text/javascript">
        jQuery(document).ready(function($) {
            $('#menu-menue .menu-item').click(function() {
               $('body').removeClass('side-nav-open');
            });             
        });
    </script>
  <?php
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文