0

我正在尝试为wordpress创建自定义菜单,但遇到了一些问题。

我有 3 个其他菜单可以使用此代码完美运行:

add_action( 'init', 'register_my_menus' );

function register_my_menus() {
    register_nav_menus(
        array(
            'primary-menu' => __( 'Primary Menu' ),
            'top-menu' => __( 'Top Menu' ),
            'footer-menu' => __( 'Footer Menu' ),
            'baseball-menu' => __( 'Baseball Menu' ),
        )
    );
}

然而问题是,即使我在管理面板中添加菜单,当我在自定义页面上调用此 -Baseball menu- 时,也会显示错误的菜单。

菜单的图像

这是我用来调用棒球菜单的代码,但是当我检查页面时,显示的是正常的导航菜单。

我的想法不多了。什么可能导致这个问题?

<?php 
    /* Template Name: Baseball Page */

get_header(); ?>

            <!-- BEGIN MAIN WRAPPER -->
            <div id="main-wrapper">

            <div>

                <?php wp_nav_menu( array( 'container' => false, 'theme-location' => 'baseball-menu' ) ); ?>

            </div>


            </div>


            <?php get_footer(); ?>
4

1 回答 1

0

It looks like the issue is with the 'theme-location'. It is using a dash instead of an underscore.

It should be 'theme_location'.

Hope that helps,

~ crw

于 2013-02-14T05:04:14.480 回答