Il suffit d’intervenir dans le fichier searchform.php de votre thème ou d’insérer un bout de code dans votre thème.
Remplacez la partie idoine du code source par:
<?php $search_text = "Search"; ?>
<form method="get" id="searchform"
action="<?php bloginfo(‘home’); ?>/">
<input type="text" value="<?php echo $search_text; ?>"
name="s" id="s"
onblur="if (this.value == »)
{this.value = ‘<?php echo $search_text; ?>’;}"
onfocus="if (this.value == ‘<?php echo $search_text; ?>’)
{this.value = »;}" />
<input type="hidden" id="searchsubmit" />
</form>
Source:
- WordPress Search Form without Search Button · Dagon Design
http://www.dagondesign.com/…search-form-without-search-button
This article explains a method for displaying a WordPress search form without a search button. The user simply enters they…