-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
42 lines (29 loc) · 1.01 KB
/
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
<?php get_header(); ?>
<div class="page-hero row-outer">
<div class="container">
<div class="row text-center justify-content-center">
<div class="col-xl-9">
<header class="entry-header">
<h5><?php _e("Search Results for","bonestheme"); ?>: </h5>
<h1 class="entry-title"> <?php echo esc_attr(get_search_query()); ?></h1>
</header>
</div><!-- /col -->
</div> <!-- /row -->
</div> <!-- /container -->
</div> <!-- /page-hero -->
<div class="row-outer">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-9">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part( 'partials/content', 'excerpt' ); ?>
<?php endwhile; ?>
<?php get_template_part( 'partials/pagination' ); ?>
<?php else : ?>
<?php get_template_part( 'partials/content', 'none' ); ?>
<?php endif; ?>
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /container -->
</div> <!-- /row-outer -->
<?php get_footer(); ?>