使用PHP在WordPress中使用自定义菜单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用PHP在WordPress中使用自定义菜单相关的知识,希望对你有一定的参考价值。

How to enable Custom Navigation Menus in WordPress 3.0

Like the custom background, header image, and post thumbnails, the custom navigation menus also needs to be enabled through your theme’s functions.php file.
  1. Simply add the code below to your theme’s functions.php file:
  2.  
  3. add_theme_support( 'menus' );
  4.  
  5.  
  6. And use this code to insert the menu into your template file:
  7.  
  8. <?php wp_nav_menu( array( 'sort_column' => 'menu_order', 'container_class' => 'menu-header' ) ); ?>

以上是关于使用PHP在WordPress中使用自定义菜单的主要内容,如果未能解决你的问题,请参考以下文章

给wordpress后台侧栏菜单添加自定义字段的方法

php 使用自定义帖子类型获取自定义WordPress菜单

php 使用自定义帖子类型获取自定义WordPress菜单

如何给我的 WordPress 菜单页面自定义链接

php Wordpress自定义自定义菜单类

php WordPress类可以轻松地将自定义菜单项动态添加到菜单中。