Adding Search Bar

In WordPress, you can have your very own Search Bar. It allows users to easily locate the content they are looking for with a simple click of a button. To get out, just copy the following code into where ever you want your search bar to be.
<form method="get" id=”searchform" action="<?php bloginfo('url'); ?>/">
<input type="text" value="Type your search here and press enter" name="s" class="search" />
</form>

Once you have added the code, it will look something like this:

Post to Twitter