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

php - Add my footer menu to the header

programmeradmin2浏览0评论

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
Add a comment  | 

2 Answers 2

Reset to default 0

You 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>
发布评论

评论列表(0)

  1. 暂无评论