Skip to content

Instantly share code, notes, and snippets.

@hemusyl
Forked from wcodex/gist:8825693
Created October 9, 2015 13:59
Show Gist options
  • Save hemusyl/a32c9d848c506e0ecf85 to your computer and use it in GitHub Desktop.
Save hemusyl/a32c9d848c506e0ecf85 to your computer and use it in GitHub Desktop.
Custom WordPress search form using bootstrap 3.0
?>
<form class="navbar-form" role="search" action="<?php echo site_url('/'); ?>" method="get" >
<div class="input-group">
<input type="text" class="form-control" placeholder="Search" name="s" id="search" value="<?php the_search_query(); ?>">
<div class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i></button>
</div>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment