我想在这里设置外观下的功能“菜单”吗?
我正在建立新的主题。
我有折叠代码,巫婆定义了菜单,但它消失了,你可以在图像中看到。
非常感谢
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' ); ?>

发布于 2012-09-27 19:09:46
确保在您的Functions.php文件中打开了菜单支持。
if (function_exists('add_theme_support')) {
add_theme_support('menus');
}更多信息在这里:http://templatic.com/news/wordpress-3-0-menu-management/
https://stackoverflow.com/questions/12621787
复制相似问题