Raghunath Gurjar

Hello Friends!

Hope you are doing well ๐Ÿ™‚

If you want to edit the html of default search form in your wordpress website, then donโ€™t warry ๐Ÿ™‚ just add my code in your theme function file.

raghu-blog

/********************************************
ย * Start search form hookes part here
*********************************************/
function my_search_form( $form ) {
ย ย ย  $form = '<form role="search" method="get" id="searchform" class="searchform" action="' . home_url( '/' ) . '" >
ย ย ย  <div>
ย ย ย  <input type="text" value="' . get_search_query() . '" name="s" onblur="if (this.value == '') {this.value = 'Search';}" onfocus="if (this.value == 'Search') {this.value = '';}" id="setop"/>
ย ย ย  <input type="submit" id="searchsubmit" value="'. esc_attr__( 'Search' ) .'" />
ย ย ย  </div>
ย ย ย  </form>';

ย ย ย  return $form;
}

add_filter( 'get_search_form', 'my_search_form' );
/********************************************
ย * End hookes part here
*********************************************/

Enjoy Code! | Raghunath Blog

View original post