wordpress nav class id bug wp menu

时间:2015-03-24 10:24:41

标签: php wordpress class content-management-system nav

大家好,所有wordpress都拒绝添加数组中指定的id和类,它会忽略代码,如果我检查元素,我会得到一堆WordPress类。有人可以帮忙吗?

(位置注册工作正常)

<div class="menu-main-nav-container">
<ul id="menu-main-nav" class="menu">
<li id="menu-item-110" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-110">

//在functions.php中找到

function html5blank_nav()
{
    wp_nav_menu(
    array(
        'theme_location'  => 'header-menu',
        'menu'            => 'header-menu',
        'container'       => 'false',
        'container_class' => 'testclass',
        'container_id'    => 'testid',
        'menu_class'      => '',
        'menu_id'         => '',
        'echo'            => true,
        'fallback_cb'     => '',
        'before'          => '',
        'after'           => '',
        'link_before'     => '',
        'link_after'      => '',
        'items_wrap'      => '<ul>%3$s</ul>',
        'depth'           => 0,
        'walker'          => ''
        )
    );
}



    function register_html5_menu()
    {
        register_nav_menus(array( // Using array to specify more menus if needed
            'header-menu' => __('header-menu', 'html5blank'), // Main Navigation
        ));
    }

    add_action('init', 'register_html5_menu'); // Add HTML5 Blank Menu
header.php中的

代码(只是一个代码段)

get_header(); ?>

    <div id="primary" class="content-area">
        <main id="main" class="site-main" role="main">

        <?php if ( have_posts() ) : ?>

            <?php /* Start the Loop */ ?>
            <?php while ( have_posts() ) : the_post(); ?>
                <?php
                    get_template_part( 'content', get_post_format() ); 
                ?>

            <?php endwhile; ?>

            <?php the_posts_navigation(); ?>

            <?php html5blank_nav();?>  // call to NAV


    <a href="#" id="pull">Menu</a>  

2 个答案:

答案 0 :(得分:1)

您将容器设置为false,因此您提供的课程无处可去。

如果您想要容器上的类或者为menu_class或menu_id指定类,请将容器更改为true。

答案 1 :(得分:0)

你试过这个吗?

'items_wrap'      => '<ul id="%1$s" class="%2$s">%3$s</ul>',

并且您应该将menu_class中的课程和menu_id中的ID放在一起工作。