模板和函数中的wordpress3菜单
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模板和函数中的wordpress3菜单相关的知识,希望对你有一定的参考价值。
Code for enabling custom menus in your theme in WordPress 3. This code is from http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus
<?php // placed with functions.php add_action( 'init', 'register_my_menus' ); function register_my_menus() { register_nav_menus( 'primary-menu' => __( 'Primary Menu' ), 'secondary-menu' => __( 'Secondary Menu' ), 'tertiary-menu' => __( 'Tertiary Menu' ) ) ); } ?> // placed within themes template where menu should be located
以上是关于模板和函数中的wordpress3菜单的主要内容,如果未能解决你的问题,请参考以下文章
自定义菜单保存在 Wordpress 3.0 数据库中的啥位置?
Wordpress 3.5 - 如何仅使用 wp_nav_menu 显示父级的子菜单?