Add search icon to primary navigation?
-
Is it possible to add a search icon to the primary navigation in the free theme as it appears in the premium demo? Specifically the ‘menu-search-icon-kt panel’.
I have added a search form in my child theme functions.php using the code below but it appears in every menu creating CSS styling issues.
Thanks in advance and thanks for the great theme.
<?php // add your custom functions here add_filter('wp_nav_menu_items','add_search_box', 10, 2); function add_search_box($items, $args) { ob_start(); get_search_form(); $searchform = ob_get_contents(); ob_end_clean(); $items .= '<li>' . $searchform . '</li>'; return $items; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Add search icon to primary navigation?’ is closed to new replies.