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

Posted

tags:

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

Simply add the code below to your theme’s functions.php file:

    add_theme_support( 'menus' );


And use this code to insert the menu into your template file:

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

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

PHP 在Wordpress中使用自定义字段

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

php 在WordPress中使用自定义帖子类型分页

PHP 测试我们是否在wordpress中使用自定义帖子类型

在 WordPress 中使用自定义 JQuery 脚本而不更新主题 functions.php

如何在自定义 PHP 脚本中调用 WordPress 函数