View file root/searchform.php

File size: 1.14Kb
<?php
/**
 * ****************************************************************************
 *
 *   НЕ РЕДАКТИРУЙТЕ ЭТОТ ФАЙЛ
 *
 *   ВНИМАНИЕ!!!!!!!
 *
 *   НЕ РЕДАКТИРУЙТЕ ЭТОТ ФАЙЛ
 *   ПРИ ОБНОВЛЕНИИ ТЕМЫ - ВЫ ПОТЕРЯЕТЕ ВСЕ ВАШИ ИЗМЕНЕНИЯ
 *   ИСПОЛЬЗУЙТЕ ДОЧЕРНЮЮ ТЕМУ ИЛИ НАСТРОЙКИ ТЕМЫ В АДМИНКЕ
 *
 *   ПОДБРОБНЕЕ:
 *   https://docs.wpshop.ru/child-themes/
 *
 * *****************************************************************************
 *
 * @package Root
 */

$rand_id = rand( 0,9999 );

?>

<form role="search" method="get" id="searchform_<?php echo $rand_id ?>" action="<?php echo home_url( '/' ) ?>" class="search-form">
    <label class="screen-reader-text" for="s_<?php echo $rand_id ?>"><?php _e( 'Search', 'root' ) ?>: </label>
    <input type="text" value="<?php echo get_search_query() ?>" name="s" id="s_<?php echo $rand_id ?>" class="search-form__text">
    <button type="submit" id="searchsubmit_<?php echo $rand_id ?>" class="search-form__submit"></button>
</form>