Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@roose
Created May 29, 2011 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roose/997870 to your computer and use it in GitHub Desktop.
Save roose/997870 to your computer and use it in GitHub Desktop.
WordPress search form template
<form action="<?php bloginfo('url'); ?>" id="searchform" method="get">
<div>
<input type="text" onblur="if (this.value == '') {this.value = 'Search';}" onfocus="if (this.value == 'Search') {this.value = '';}" id="s" name="s" value="Search"/>
<input type="submit" value="" id="ss"/>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment