我的菜单栏“菜单”正在消失我应该做什么来显示它?

时间:2012-09-27 12:49:44

标签: wordpress

我想在这里设置功能“菜单”在外观下

我正在建立新的主题。

我有定义菜单的代码,但它会在图像中看到消失。

非常感谢

的header.php

<nav id="access" role="navigation">
                <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
                <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
                <div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to primary content', 'twentyeleven' ); ?></a></div>

                <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assigned to the primary location is the one used. If one isn't assigned, the menu with the lowest ID is used. */ ?>
                <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
            </nav><!-- #access -->

function.php

// This theme uses wp_nav_menu() in one location.
    register_nav_menu( 'primary', __( 'Primary Menu', 'twentyeleven' ) );

的index.php

<?php twentyeleven_content_nav( 'nav-above' ); ?>

enter image description here

1 个答案:

答案 0 :(得分:0)

确保在Functions.php文件中打开菜单支持。

    if (function_exists('add_theme_support')) {
          add_theme_support('menus');
    }

更多信息: http://templatic.com/news/wordpress-3-0-menu-management/