File: /var/www/html/site/newsite_contaminado/wp-content/themes/waira/search.php
<?php
/**
* The template for displaying search results pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package paira
*/
get_header();
?>
<?php if(get_theme_mod('paira_search_bc', true)) : ?>
<!-- paira BC -->
<div class="paira-bc">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="bc-title"><?php printf( esc_html__( 'Search Results: %s', 'paira' ), '<span>' . get_search_query() . '</span>' );?></h2>
<div class="bc-list">
<?php if (function_exists('bcn_display')) bcn_display(); ?>
</div>
</div>
</div>
</div>
</div>
<!-- End paira BC -->
<?php endif; ?>
<section class="paira-search-page search-page">
<div class="container">
<div class="row">
<?php if ( have_posts() ) : ?>
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
/**
* Run the loop for the search to output the results.
* If you want to overload this in a child theme then include a file
* called content-search.php and that will be used instead.
*/
get_template_part( 'template-parts/content', 'search' );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div>
</div>
</section>
<?php
get_footer();