Created
March 23, 2013 05:41
-
-
Save spencejs/5226611 to your computer and use it in GitHub Desktop.
Search Form For Specific Post Type
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--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