移动导航中的父链接在JointsWP中无法单击

时间:2016-05-24 12:18:52

标签: php mobile menu submenu

我目前正在将JointsWP用于WordPress主题。我遇到了一个问题,我的下拉菜单中的父链接无法点击。

我搜索了基金会论坛,发现我认为有用的this thread。它提到将data-options="mobile_show_parent_link: true"添加到导航类顶部栏。

JointsWP没有为它的菜单使用nav标签,但是我确实将它添加到我认为应该的位置,这是/assets/functions/menu.php中的ul包装器像这样的文件:

// The Top Menu
function joints_top_nav() {
 wp_nav_menu(array(
    'container' => false,                           // Remove nav container
    'menu_class' => 'vertical medium-horizontal menu',       // Adding custom nav class
    'items_wrap' => '<ul id="%1$s" class="%2$s" data-options="mobile_show_parent_link: true" data-responsive-menu="accordion medium-dropdown">%3$s</ul>',
    'theme_location' => 'main-nav',                 // Where it's located in the theme
    'depth' => 5,                                   // Limit the depth of the nav
    'fallback_cb' => false,                         // Fallback function (see below)
    'walker' => new Topbar_Menu_Walker()
));
} /* End Top Menu */

然而,这不起作用。

我也试过了:

data-options="is_hover: false"

当人们在移动设备中为JointsWP扩展子菜单时,有没有人对如何使顶级父链接可点击有任何想法?

谢谢!

0 个答案:

没有答案