Snippets: Search

Add search form to specific nav menu

add_filter('wp_nav_menu_items', 'add_search_form', 10, 2); function add_search_form($items, $args) {     if( $args->theme_location == 'MENU-NAME' )     $items .= '<ul>         <li class="search">         <form id="searchform" role="search" action="'.home_url( '/' ).'" method="get"><input id="s" [...]
Nav Menu, Search | Type: PHP

Search Form for CPT

To add a search form that searches only a particular post type, not your entire website. <form id="cptsearch" action="<?php echo home_url(); ?>" method="get">     <input name="s" type="text"> [...]
Search | Type: PHP