-
Notifications
You must be signed in to change notification settings - Fork 3
/
search.php
49 lines (30 loc) · 990 Bytes
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
* The template for displaying search results pages.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package videobuzz
*/
get_header(); ?>
<div class="container">
<section class="content">
<div class="row">
<div class="<?php echo is_active_sidebar( 'sidebar-1' ) ? 'col-sm-8' : 'col-sm-12'; ?>">
<main class="main" role="main">
<?php
if ( have_posts() ) : ?>
<h1 class="heading"><?php printf( esc_html__( 'Search Results for: %s', 'videobuzz' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
<?php
/* Start the Loop */
get_template_part( 'template-parts/content', 'loop' );
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
</main><!-- .main -->
</div><!-- .col -->
<?php get_sidebar(); ?>
</div><!-- .row -->
</section><!-- .content -->
</div><!-- .container -->
<?php get_footer(); ?>