mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-22 11:03:43 +03:00
28 lines
709 B
PHP
28 lines
709 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace WordPressdotorg\Five_for_the_Future\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>
|