DISCLAIMER:
This article is slightly more technical. We hate having to be technical at TCI. Our goal is really to make things EASY. To make placeing a search box on your site easier, we are developing a wordpress plugin to do this for you. As a note, the information in this tutorial may not work properly for you the first time around. You might have to try variations to make it work for you.
Placing a search box on your site is fairly easy. If you have a WordPress web site template built by Townsend Creations Inc we provide 2 quick and easy options:
Both of these settings are built into every web site template we build. But in some cases you might want to place the search box somewhere else.
This first block of code below is fairly basic and will insert a basic search box. You can make changes to the code if you like.========================
<form id="searchform" method="get" action="/index.php"> <input type="text" name="s" id="s" size="15" /> <input type="submit" value="Search" /> </form>
The above code will display a search box similar to the one below.