0

我在这里想念的是在外观下设置功能“菜单”吗?

我正在构建新主题。

我有以下代码来定义菜单,但正如您在图像中看到的那样,它消失了。

非常感谢

头文件.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 -->

函数.php

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

索引.php

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

在此处输入图像描述

4

1 回答 1

0

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

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

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

于 2012-09-27T19:09:46.847 回答