Skip to content

Instantly share code, notes, and snippets.

@INDIAN2020
Created June 11, 2013 12:51
Show Gist options
  • Select an option

  • Save INDIAN2020/5756549 to your computer and use it in GitHub Desktop.

Select an option

Save INDIAN2020/5756549 to your computer and use it in GitHub Desktop.
wordpress: search short code
<?php
//add_shortcode('wpbsearch', 'get_search_form');
function wpbsearchform( $form ) {
$form = '<form role="search" method="get" id="searchform" action="' . home_url( '/' ) . '" >
<div><label class="screen-reader-text" for="s">' . __('Search for:') . '</label>
<input type="text" value="' . get_search_query() . '" name="s" id="s" />
<input type="submit" id="searchsubmit" value="'. esc_attr__('Search') .'" />
</div>
</form>';
return $form;
}
add_shortcode('wpbsearch', 'wpbsearchform');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment