-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchform.php
More file actions
18 lines (18 loc) · 779 Bytes
/
Copy pathsearchform.php
File metadata and controls
18 lines (18 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/**
* Search Form for BlogBD theme.
*
* @package BlogBD
* @author Mehraz Morshed
* @copyright Copyright (c) 2020, Mehraz Morshed
* @link https://mehrazmorshed.com
* @since BlogBD 1.0
*/
?>
<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<label>
<span class="screen-reader-text"><?php echo _x( 'Search for:', 'label', 'blogbd' ); ?></span>
<input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search …', 'placeholder', 'blogbd' ); ?>" value="<?php echo get_search_query(); ?>" name="s" />
</label>
<button type="submit" class="search-submit"><?php echo esc_html_x( 'Search', 'submit button', 'blogbd' ); ?></button>
</form>