mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-20 10:03:43 +03:00
28 lines
706 B
PHP
28 lines
706 B
PHP
<?php
|
|
|
|
namespace WordPressDotOrg\FiveForTheFuture\Theme;
|
|
|
|
?>
|
|
|
|
<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
|
|
<label for="s" class="screen-reader-text">
|
|
<?php echo esc_html_x( 'Search for:', 'label', 'wporg-5ftf' ); ?>
|
|
</label>
|
|
|
|
<input
|
|
type="search"
|
|
id="s"
|
|
class="search-field"
|
|
placeholder="<?php echo esc_attr_x( 'Search', 'placeholder', 'wporg-5ftf' ); ?>"
|
|
value="<?php the_search_query(); ?>"
|
|
name="s"
|
|
/>
|
|
|
|
<button class="button button-primary button-search">
|
|
<i class="dashicons dashicons-search"></i>
|
|
<span class="screen-reader-text">
|
|
<?php esc_html_e( 'Search plugins', 'wporg-5ftf' ); ?>
|
|
</span>
|
|
</button>
|
|
</form>
|