Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
图片1
图二 图三
图4
我想以图 1 显示的方式组织我的菜单顺序,但它以图 2 显示的方式出现 图 3 有我的 functions.php 和图 4 有我的 header.php 文件
点击后我忘了点击“标题菜单”选项,它工作正常!!
您也忘记编辑组织菜单进入管理并通过上下拖动来组织主题
这应该在 header.php 中
wp_nav_menu( array( 'theme_location' => 'nav-menu' ) );
function.php 中的代码
register_nav_menus( array( 'nav-menu' => esc_html__( 'Nav Menu', 'themename'), ) );
这是在 wordpress 中制作导航栏的正确方法。