0
我開始使用Wordpress世界,我一直在閱讀wp.tutsplus的一些教程。 我一直在檢查這個教程很多次,但我找不到我的錯誤。自定義菜單問題
問題: WordPress的不打印我的菜單,我可以在WP面板上創建它們,但它不打印任何我的菜單位於header.php,它是主要的。
這裏的的functions.php:
function register_my_menus(){
register_nav_menus(array(
'main-menu' => __('Menú Principal' , 'HICA')
));
}
add_action('init', 'register_my_menus');
?>
這裏的header.php中
<nav>
<?php wp_nav_menu(array(
'theme_location' => 'main-menu'
)); ?>
</nav>
我發現了錯誤...我沒有爲菜單分配頁面名稱。對不起,我的壞u.u – Alex