File: /services/webpages/a/b/absolutespace.ca/secure/wp-content/themes/catch-kathmandu-pro/searchform.php
<?php
/**
* The template for displaying search forms in Catch Kathmandu
*
* @package Catch Themes
* @subpackage Catch Kathmandu
* @since Catch Kathmandu 1.0
*/
// get the data value from theme options
global $catchkathmandu_options_settings;
$options = $catchkathmandu_options_settings;
$catchkathmandu_search_text = $options[ 'search_display_text' ];
?>
<form method="get" class="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search">
<label for="s" class="assistive-text"><?php _e( 'Search', 'catchkathmandu' ); ?></label>
<input type="text" class="field" name="s" value="<?php echo esc_attr( get_search_query() ); ?>" id="s" placeholder="<?php printf( __( '%s', 'catchkathmandu' ) , $catchkathmandu_search_text ); ?>" />
<input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'catchkathmandu' ); ?>" />
</form>