Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 23, 2013 05:41
Show Gist options
  • Save spencejs/5226611 to your computer and use it in GitHub Desktop.
Save spencejs/5226611 to your computer and use it in GitHub Desktop.
Search Form For Specific Post Type
<!--Search Form for Custom Post Type Only-->
<form role="search" method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
<input type="text" name="s" id="s" value="" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;"/>
<input type="hidden" name="post_type" value="art" />
<input type="submit" id="searchsubmit" value="Search Art" />
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment