I want to add more links in my menu.
duvacon.de ---> you see only the "categories", I want also add the links of my footer menu to the header.
This code is for the header menu, now I want to add a link for "contact", "chat"... in the header
<div class="menu">
<a class="btn"><?php _e("Categories", "myfriv"); ?> <span class="icon icon-angle-down"></span></a>
<ul class="actions">
<?php wp_list_categories('orderby=name&title_li='); ?>
</ul>
</div>
I want to add more links in my menu.
duvacon.de ---> you see only the "categories", I want also add the links of my footer menu to the header.
This code is for the header menu, now I want to add a link for "contact", "chat"... in the header
<div class="menu">
<a class="btn"><?php _e("Categories", "myfriv"); ?> <span class="icon icon-angle-down"></span></a>
<ul class="actions">
<?php wp_list_categories('orderby=name&title_li='); ?>
</ul>
</div>
Share
Improve this question
edited Jul 29, 2019 at 18:42
Pat J
12.5k2 gold badges28 silver badges36 bronze badges
asked Jul 29, 2019 at 18:36
jason jonesjason jones
1
2 Answers
Reset to default 0You have to add more links in your header menu like:
<div class="menu">
<a class="btn">Kategorien <span class="icon icon-angle-down"></span></a>
<ul class="actions"><!--THIS IS YOUR CATEGORIES SUBMENU-->
<li class="cat-item cat-item-17">
<a href="https://duvacon.de/category/action/" data-hasqtip="13" oldtitle="Action" title="" aria-describedby="qtip-13">Action</a>
</li>
</ul>
<!-- NEW ITEMS -->
<a href="%LINKTOCONTACT%" class="btn">Contact</a>
<a href="%LINKTOCHAT%" class="btn">Chat</a>
</div>
I don't know if you are adding in the wordpress backend menu, but if yes you can maybe use wp_nav_menu. I think it is more easy to create menus and manage them.
i can do it like this example
<div class="menu">
<a href="link" class="btn">Chat<span class="icon icon-angle-down"></span></a>
</div>
<div class="menu">
<a href="link" class="btn">Spiel hinzfügen?<span class="icon icon-angle-down"></span></a>
</div>
<div class="menu">
<a href="link" class="btn">Kontakt<span class="icon icon-angle-down"></span></a>
</div>