Skip to content

Instantly share code, notes, and snippets.

@badah
Last active August 29, 2015 14:06
Show Gist options
  • Save badah/c4ae46f347c5f3ef041f to your computer and use it in GitHub Desktop.
Save badah/c4ae46f347c5f3ef041f to your computer and use it in GitHub Desktop.
Wordpress: custom searchform
<form role="search" method="get" class="searchform" id="searchform" action="<?php echo home_url( '/' ); ?>">
<div><label class="screen-reader-text" for="s"><?php _e('Search for:', 'bonestheme') ?></label>
<input type="text" value="" placeholder="<?php _e( 'Search this site', 'bonestheme' )?>" name="s" id="s" />
<input type="submit" id="searchsubmit" value="Submit" />
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment