I would like to add some text in my blank search box for my blog.
My Blog: www.bornsquishy.com
Current searchform.php code:
<form method="get" id="searchform" action="<?php bloginfo('home'); ?>">
<input type="text" value="<?php the_search_query(); ?>" name="s">
<input type="submit" value="Go">
</form>
I'm sure it's a simple fix, but I no absolutely nothing about php.
EDIT - Here's how I solved the problem:
<form method="get" id="searchform" action="<?php bloginfo('home'); ?>">
<input type="text" placeholder="Search My Site" value="<?php the_search_query(); ?>" name="s">
<input type="submit" value="Go">
</form>