在wordpress主题中创建动态菜单,从html转换为wordpress

时间:2017-02-07 09:47:03

标签: wordpress wordpress-theming

我已将我的单页html网站转换为wordpress主题。 Index.html页面已转换为header.phpindex.phpfooter.php

现在我想制作一个动态菜单。我已经在WordPress中注册了我的菜单,我在管理面板中显示了它。当我创建一个新菜单时,页面显示在那里添加我的菜单。我该如何创建该页面?

1 个答案:

答案 0 :(得分:0)

您可能需要通过functions.php注册菜单。 如果你没有,在theme.php中创建一个主题文件并粘贴以下代码来注册菜单。

register_nav_menus( array('my_nav' => __( 'Primary Navigation', 'dz theme' ),
    'secondary' => __('Secondary Navigation', 'dz theme') 
    ));

您可以将主菜单称为:

<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'my_nav' ) ); ?>