View file newscard/searchform.php

File size: 625B
<?php
/**
 * The template for displaying search form of the theme
 *
 *
 * @package NewsCard
 */
?>
<form action="<?php echo esc_url( home_url( '/' ) ); ?>" method="get" class="search-form">
	<label class="assistive-text"> <?php esc_html_e( 'Search', 'newscard' ); ?> </label>
	<div class="input-group">
		<input type="search" value="<?php the_search_query(); ?>" placeholder="<?php esc_attr_e( 'Search', 'newscard' ); ?>" class="form-control s" name="s">
		<div class="input-group-prepend">
			<button class="btn btn-theme"><?php esc_html_e( 'Search', 'newscard' ); ?></button>
		</div>
	</div>
</form><!-- .search-form -->