最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

menus - wp_nav_menu not working

programmeradmin3浏览0评论
Closed. This question is off-topic. It is not currently accepting answers.

Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?

Closed 5 years ago.

Improve this question

Im trying to do a wordpress theme. But i have an error in wp_nav_menu use. For exam;

 wp_nav_menu(array('theme_location' => 'header','menu_class'=>'hor-menu'));

and my functions.php

function technologynews_setup() {

    register_nav_menu('header',__('Header Menu','Technologynews'));
    register_nav_menu('footer',__('Footer Menu','Technologynews'));

}

add_action ('after_setup_theme','technologynews_setup');

I cant use the menu class in the wordpress menu. Help me please

Closed. This question is off-topic. It is not currently accepting answers.

Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?

Closed 5 years ago.

Improve this question

Im trying to do a wordpress theme. But i have an error in wp_nav_menu use. For exam;

 wp_nav_menu(array('theme_location' => 'header','menu_class'=>'hor-menu'));

and my functions.php

function technologynews_setup() {

    register_nav_menu('header',__('Header Menu','Technologynews'));
    register_nav_menu('footer',__('Footer Menu','Technologynews'));

}

add_action ('after_setup_theme','technologynews_setup');

I cant use the menu class in the wordpress menu. Help me please

Share Improve this question edited Apr 2, 2020 at 19:36 fuxia 107k39 gold badges255 silver badges459 bronze badges asked Apr 2, 2020 at 18:27 Yağız SavaşYağız Savaş 111 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

and the all codes are here

<!-- HORIZONTAL-MENU -->
            <div class="sticky">
                <div class="horizontal-main hor-menu clearfix ">
                    <div class="horizontal-mainwrapper container clearfix">
                        <nav class="horizontalMenu clearfix">
                        <?php wp_nav_menu(array('theme_location' => 'header','menu_class'=>'horizontalMenu',)); ?>
                            <ul class="horizontalMenu-list">
                                <li aria-haspopup="true"><a href="#" class="sub-icon active"><i class="fe fe-home"></i> Dashboard <i class="fa fa-angle-down horizontal-icon"></i></a>
                                    <ul class="sub-menu">
                                        <li aria-haspopup="true"><a href="index.html" class="active">Dashboard 01</a></li>
                                        <li aria-haspopup="true"><a href="index2.html">Dashboard 02</a></li>
                                        <li aria-haspopup="true"><a href="index5.html">Dashboard 05</a></li>
                                    </ul>
                                </li>
                            </ul>
                        </nav>
                        <!-- NAV END -->
                    </div>
                </div>
            </div><!-- Sicky-->
            <!-- HORIZONTAL-MENU END -->

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论