Closed. This question is off-topic. It is not currently accepting answers.admin管理员组文章数量:1390456
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 questionIm 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 questionIm 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 badge1 Answer
Reset to default 0and 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 -->
本文标签: menuswpnavmenu not working
版权声明:本文标题:menus - wp_nav_menu not working 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744605374a2615321.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论