File: /var/www/test/wp-content/themes/kavine-blog/search.php
<?php
/**
* The template for displaying search results pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package Shadow Themes
*/
get_header(); ?>
<?php
$header_image=get_header_image();
$archive_header_image_enable = get_theme_mod( 'kavine_blog_enable_archive_blog_header_image',false);
$header_disable_class='';
if ($archive_header_image_enable==false) {
$header_disable_class='disable-top-header-image';
}
?>
<div id="banner-image" class="<?php echo $header_disable_class; ?>" style="background-image: url('<?php echo esc_url($header_image); ?>');">
<div class="overlay"></div>
<div class="page-site-header">
<div class="wrapper">
<header class="page-header">
<h1 class="page-title"><?php
/* translators: %s: search query. */
printf( esc_html__( 'Search Results for: %s', 'kavine-blog' ), '<span>' . get_search_query() . '</span>' );
?></h1>
</header><!-- .page-header -->
<?php
$breadcrumb_enable = get_theme_mod( 'kavine_blog_breadcrumb_enable', true );
if ( $breadcrumb_enable ) :
?>
<div id="breadcrumb-list">
<div class="wrapper">
<?php echo kavine_blog_breadcrumb( array( 'show_on_front' => false, 'show_browse' => false ) ); ?>
</div><!-- .wrapper -->
</div><!-- #breadcrumb-list -->
<?php endif; ?>
</div><!-- .wrapper -->
</div><!-- #page-site-header -->
</div><!-- #banner-image -->
<div id="inner-content-wrapper" class="wrapper page-section">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
$archive_column = get_theme_mod( 'kavine_blog_blog_archive_column',3);
?>
<div class="blog-posts-wrapper column-<?php echo esc_attr( $archive_column );?>">
<div id="kavine-blog-infinite-scroll" class="blog-archive-wrapper grid">
<?php
/* Start the Loop */
if ( have_posts() ) :
while ( have_posts() ) : the_post();
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_format() );
endwhile;
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
</div>
</div><!-- .posts-wrapper -->
<?php kavine_blog_posts_pagination();?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
</div>
<?php
get_footer();