PHP / Wordpress - 子菜单

时间:2016-01-08 20:01:49

标签: php wordpress

我最近在Wordpress上工作,啃着子菜单的显示。 我在这里使用此代码时遇到问题。

<div id="site-header-menu" class="site-header-menu">
    <?php if ( has_nav_menu( 'primary' ) ) : ?>

        <?php
            wp_nav_menu( array(
                'theme_location' => 'primary',
                'menu_class'     => 'nav navbar-nav',
            ) );
        ?>

    <?php endif; ?>

    <?php if ( has_nav_menu( 'social' ) ) : ?>

        <nav id="social-navigation" class="social-navigation" role="navigation" aria-label="<?php _e( 'Social Links Menu', 'twentysixteen' ); ?>">
            <?php
                wp_nav_menu( array(
                    'theme_location' => 'social',
                    'menu_class'     => 'social-links-menu',
                    'depth'          => 1,
                    'link_before'    => '<span class="screen-reader-text">',
                    'link_after'     => '</span>',
                ) );
            ?>

我的子菜单显示如下:

enter image description here

  1. 如何编辑子菜单的类?
  2. 我有任何错误,所以他们看起来像那样吗?
  3. 你能帮我解决一下吗?你有什么建议吗?

0 个答案:

没有答案