-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsearchform.php
More file actions
26 lines (20 loc) · 816 Bytes
/
searchform.php
File metadata and controls
26 lines (20 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* Search form template file.
*
* @link https://developer.wordpress.org/reference/functions/get_search_form/
*
* @package wpmeetup-theme
*/
namespace WPMeetup;
?>
<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<label for="search-field">
<p><?php echo esc_html_x( 'Search for:', 'label', 'wpleeds' ) ?></p>
</label>
<input id="search-field" type="search" class="search-field"
placeholder="<?php echo esc_attr_x( 'Search …', 'placeholder' ) ?>"
value="<?php echo esc_attr( get_search_query() ) ?>" name="s"
title="<?php echo esc_attr_x( 'Search for:', 'label', 'wpleeds' ) ?>" />
<input type="submit" class="search-submit btn btn-secondary" value="<?php echo esc_attr_x( 'Search', 'submit button', 'wpleeds' ) ?>" />
</form>