HTML
<form action="<?php bloginfo( 'url' ); ?>" method="get">
<input class="nazwanie" name="s" type="text" placeholder="Поиск..." value="<?php if(!empty($_GET['s'])){echo $_GET['s'];}?>" required>
<button type="submit" class="btn">Поиск</button>
</form>
SEARCH.PHP
<?php get_header(); ?>
<div class="intro-page">
<div class="container">
<div class="intro-cont">
<div class="content-title"><h1>Поиск по запросу: «<?php echo $_GET['s'];?>»</h1></div>
<div class="breadgrumbs">
<ul>
<li><a href="/">Главная</a></li>
<li>Поиск по запросу: «<?php echo $_GET['s'];?>»</li>
</ul>
</div>
</div>
</div>
</div>
<div class="page-content page-news">
<div class="container">
<div class="flex_block">
<?php
$args = array_merge( $wp_query->query, array( 'post_type' => 'post') );
query_posts($args); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<a class="news--inner" href="<?php the_permalink(); ?>">
<div class="miniature">
<?php the_post_thumbnail('medium_large'); ?>
<span class="btn-go">Подробнее</span>
</div>
<div class="text">
<div class="title-bold"><h2><?php the_title(); ?></h2></div>
<span class="btn">Читать</span>
</div>
</a>
<?php endwhile; else: ?>
<div class="title-block">К сожалению ничего не найдено, повторите пожалуйста поиск</div>
<?php endif;?>
</div>
</div>
</div>
<?php get_footer() ?>