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 -->