Title: Menu search area
Last modified: August 30, 2016

---

# Menu search area

 *  [nanumihai](https://wordpress.org/support/users/nanumihai/)
 * (@nanumihai)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/menu-search-area/)
 * is it possible to ad a search button in the Menu?

Viewing 1 replies (of 1 total)

 *  [Kharis Sulistiyono](https://wordpress.org/support/users/kharisblank/)
 * (@kharisblank)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/menu-search-area/#post-6884362)
 * Hi,
 * I thought it is possible to achieve. Could you please try to add the following
   function into the _functions.php_ file? You should do it in the [child theme](https://codex.wordpress.org/Child_Themes)
   mode.
 *     ```
       function prefix_add_extra_menu_content($items, $args){
   
         $newitems = $items;
   
         if( $args->theme_location == 'primary' ){ // Check if menu location is primary
   
            $newitems .= $items;
            $newitems .= get_search_form(false); // Display search form
   
         }
   
         return $newitems;
   
       }
       add_filter('wp_nav_menu_items', 'prefix_add_extra_menu_content', 10, 2);
       ```
   
 * Let me know how it goes. I’ll wait to hear back from you regarding your stats.
 * Regards,
    Kharis

Viewing 1 replies (of 1 total)

The topic ‘Menu search area’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/solon/1.08/screenshot.png)
 * Solon
 * [Support Threads](https://wordpress.org/support/theme/solon/)
 * [Active Topics](https://wordpress.org/support/theme/solon/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/solon/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/solon/reviews/)

## Tags

 * [menu](https://wordpress.org/support/topic-tag/menu/)

 * 1 reply
 * 2 participants
 * Last reply from: [Kharis Sulistiyono](https://wordpress.org/support/users/kharisblank/)
 * Last activity: [10 years, 4 months ago](https://wordpress.org/support/topic/menu-search-area/#post-6884362)
 * Status: not resolved