<?php if ( have_posts() ) : ?>
<div class="content">
<?php while ( have_posts() ) : ?>
<?php the_post(); ?>
<?php get_template_part( 'templates/search-item' ); ?>
<?php endwhile; ?>
</div>
<?php else : ?>
<?php
$test = get_post();
if ( 'testposttype' !== $test->post_type ) {
continue;
}
?>