-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
73 lines (58 loc) · 2.08 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* The template for displaying search results pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package sierra-crest-2019
*/
get_header('secondary');
?>
<!-- Featured Title -->
<div id="featured-title" class="clearfix featured-title-left">
<div id="featured-title-inner" class="container clearfix">
<div class="featured-title-inner-wrap">
<div class="featured-title-heading-wrap">
<h1 class="featured-title-heading">Search Results</h1>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div id="main-content" class="site-main clearfix">
<div id="content-wrap" class="container">
<div class="col-md-12">
<div class="wprt-spacer" data-desktop="80" data-mobi="60" data-smobi="60"></div>
</div><!-- /.col-md-12 -->
<div id="site-content" class="site-content clearfix">
<div id="inner-content" class="inner-content-wrap">
<div class="post-content-single-wrap">
<?php if (have_posts()) : while ( have_posts() ) : the_post(); ?>
<article class="hentry">
<h2 class="post-title">
<a href="<?php the_permalink(); ?>">
<span class="post-title-inner">
<?php the_title(); ?>
</span>
</a>
</h2><!-- /.post-title -->
<?php if (get_the_excerpt()) : ?>
<div class="post-content">
<?php the_excerpt(); ?>
</div><!-- /.post-excerpt -->
<?php endif; ?>
</article>
<hr>
<?php endwhile; else : ?>
<h4><?php esc_html_e( 'Sorry, no posts matched your criteria.' ); ?></h4>
<?php endif; ?>
</div><!-- /.post-content-single-wrap -->
</div><!-- /.inner-content-wrap -->
</div><!-- /#site-content -->
<div class="col-md-12">
<div class="wprt-spacer" data-desktop="80" data-mobi="60" data-smobi="60"></div>
</div><!-- /.col-md-12 -->
</div><!-- /#content-wrap -->
</div><!-- /#main-content -->
<?php
get_footer();