<?php if ( have_posts() ) : ?>
<?php
while ( have_posts() ) :
the_post(); ?>
<?php
if ($post->post_type == "post") {
get_template_part( 'template-parts/content', 'search' );
}
if ($post->post_type == "blogcard") {
get_template_part( 'template-parts/content', 'searchblog' );
}?>
<?php endwhile;?>
<?php else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
<form class="search-from-wp" role="search" method="get" id="searchform" action="<?php echo home_url( '/' ) ?>">
<input class="search-field-wp" type="text" placeholder="Поиск" value="<?php echo get_search_query(); ?>" name="b" id="b" />
<span class="search-submit-wp-wrap">
<button class="search-submit-wp" type="submit" id="searchsubmit" value=""><i class="icon-search-wp fa fa-search">
</i></button>
</span>
</form>
.