添加菜单到我的后导航?

时间:2014-09-08 21:31:24

标签: php html css wordpress

我希望在http://boasish.com上的这个字段<div class="post-nav">添加一个菜单主页,联系我们等。 enter image description here

我正在使用Wordpress。黑色区域是我想要的自定义菜单。我的模板没有为我提供在那里添加小部件的选项,所以我希望自己添加一个。页面上的其他所有内容都很好,我只想添加一个我指定的自定义菜单

以下是相关代码。

<footer class="site-footer" role="contentinfo" itemscope="itemscope" itemtype="http://schema.org/WPFooter">
 <div class="wrap">
    <div class="post-nav">
    </div>
 </div>
</footer>

1 个答案:

答案 0 :(得分:0)

custom menu添加到模板目录中的functions.php

,注册您的menu manager
function my_footer_menu() {
  register_nav_menu('footer-menu',__( 'Footer Menu' ));
}
add_action( 'init', 'my_footer_menu' );

这是您的footer.php文件

<footer class="site-footer" role="contentinfo" itemscope="itemscope" itemtype="http://schema.org/WPFooter">
  <nav class="nav-primary">
       <div class="wrap">
          <div class="post-nav">
            <?php wp_nav_menu( array( 'theme_location' => 'footer-menu', 'container_class' => 'menu' ) ); ?>
          </div>
       </div>
  </nav>
</footer>

wp-admin内,添加{{3}}中的菜单项。

我正在使用.nav-primary因为它的主题标题菜单类,所以你的页脚样式相似