使用underscores.me

时间:2017-10-27 14:15:12

标签: php wordpress twitter-bootstrap

我无法获得"菜单"或者"导航菜单"出现在标题中。

header.php

中的代码
<header>
 <?php if ( !is_front_page() ) : ?>
            <nav role="navigation" class="site-navigation main-navigation">
                <h1 class="assistive-text"><?php _e( 'Menu', 'underscoresme' ); ?></h1>
                <div class="assistive-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'underscoresme' ); ?>"><?php _e( 'Skip to content', 'underscoresme' ); ?></a></div>
                <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
            </nav><!-- .site-navigation .main-navigation -->
        <?php endif; ?>
</header>

仪表板中的菜单配置

enter image description here

实时自定义

enter image description here

它根本不想出现。在dev工具中检查时没有<nav>。我没有更改functions.php中的任何内容或包含用于使主题生效的PHP代码的任何其他文件。我想使用Bootstrap的导航菜单。

karnopedia.com是网站。

1 个答案:

答案 0 :(得分:1)

删除!is_front_page()检查中的感叹号。您的代码有效但由于检查而未显示在首页上。