-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsearchform.php
More file actions
19 lines (18 loc) · 830 Bytes
/
Copy pathsearchform.php
File metadata and controls
19 lines (18 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
* Template for displaying search forms in our theme
*
* @since MeisterMag 1.0
*/
?>
<form role="search" method="get" class="search-form tagdiv-search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<label>
<span class="screen-reader-text"><?php esc_html_e( 'Search for:', 'meistermag' ); ?></span>
<input type="search" id="tagdiv-header-search" class="search-field" placeholder="<?php esc_attr_e( 'Search …', 'meistermag' ); ?>" value="<?php echo get_search_query(); ?>" name="s" autocomplete="off" />
<span class="tagdiv-search-input-bar"></span>
</label>
<button type="submit" class="search-submit wpb_button wpb_btn-inverse btn">
<span class="screen-reader-text"><?php esc_html_e( 'Search', 'meistermag' ); ?></span>
<?php esc_html_e( 'Search', 'meistermag' ) ?>
</button>
</form>