first commit
This commit is contained in:
20
wp-content/themes/solarify/searchform.php
Normal file
20
wp-content/themes/solarify/searchform.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
* Template for displaying search forms
|
||||
*
|
||||
*/
|
||||
?>
|
||||
|
||||
<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
|
||||
<div class="form-group bottommargin_0">
|
||||
|
||||
<input type="search" class="search-field form-control"
|
||||
placeholder="<?php echo esc_attr_x( 'Keyword', 'placeholder', 'solarify' ); ?>"
|
||||
value="<?php echo get_search_query(); ?>" name="s"
|
||||
title="<?php echo esc_attr_x( 'Search for:', 'label', 'solarify' ); ?>"/>
|
||||
|
||||
</div>
|
||||
<button type="submit" class="search-submit theme_button no_bg_button">
|
||||
<?php echo esc_html_x( 'ok', 'submit button', 'solarify' ); ?>
|
||||
</button>
|
||||
</form>
|
||||
Reference in New Issue
Block a user