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

menus - Adding additional html to the end of the root level in a custom nav walker

programmeradmin2浏览0评论

I have a custom nav walker, which essentially just add's new classes to the menu, however, my menu also contains some hard coded elements at the end (Contact button & Search Icon).

Where/How to I add this custom <li>'s in the nav walker to ensure that these get added in the root UL as the last items, only once?

I have a custom nav walker, which essentially just add's new classes to the menu, however, my menu also contains some hard coded elements at the end (Contact button & Search Icon).

Where/How to I add this custom <li>'s in the nav walker to ensure that these get added in the root UL as the last items, only once?

Share Improve this question asked Sep 25, 2019 at 9:37 ChrisBrathertonChrisBratherton 1134 bronze badges 0
Add a comment  | 

1 Answer 1

Reset to default 0

Hope this code will helpful for you, add the items_wrap in wp_nav_menu to merge li's

<?php
 wp_nav_menu( array( 'theme_location' => 'primary', 'container' => '', 'menu_id' => '', 'menu_class'=> '', 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s<li><a href="http://www.example/contact">Contact</a></li><li><a href="javascript:void(0);">Search</a></li></ul>' ) ); ?>
发布评论

评论列表(0)

  1. 暂无评论