web/wp-content/themes/IRI-Theme/searchform.php
author hurons@caf4f556-3d62-0410-8435-a86758001935
Wed, 23 Dec 2009 17:55:33 +0000
branchwordpress
changeset 109 03b0d1493584
child 123 561aa6d282f6
permissions -rw-r--r--
wordpress 2.8 () with the following extensions : - add-to-any - categories page - Event calendar (a custom version for IRI-Theme) - Executable PHP widget - FD feedburner - ggis subscribe - Google Xml site maple - post of current category - page redirection - related post by category AND IRI-Theme

<?php 
	if (!is_search()) {
		// Default search text
		$search_text = __("Search");
	} else {
		$search_text = $s;
	}
?>

		<div class="box">
			<div>
				<h6><?php _e("Search");?></h6>
				
				<div id="search">
					<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
						<div>
							<input type="text" name="s" id="s"
										 value="<?php echo wp_specialchars($s, 1); ?>"
										 onfocus="clearInput('s', '<?php echo wp_specialchars($s, 1); ?>')" 
										 onblur="clearInput('s', '<?php echo wp_specialchars($s, 1); ?>')"
							/>
							<input type="submit" name="envoi" value="<?php _e("Search");?>" /> 
							
						</div>
					</form>
				</div>
			</div>
			<div class="cleaner"></div>	
		</div>