-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
80 lines (63 loc) · 3.16 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
74
75
76
77
78
79
80
<?php
/**
* The template for displaying search results pages
* @package log-book
* @version 1.0.1
*/
get_header();
$breadcrumb_type = log_book_get_option( 'breadcrumb_type' );
if($breadcrumb_type == 'normal'):
?>
<!-- Breadcrumb Header -->
<div class="tm-breadcrumb" <?php echo $header_style; ?>>
<div class="container">
<h1><?php printf(esc_html__('Search Results for: %s', 'log-book'), '<span>' . get_search_query() . '</span>'); ?></h1>
</div>
</div>
<!-- /Breadcrumb Header -->
<?php endif; ?>
<div class="container">
<!-- Main Content Area -->
<section class="section-wrap">
<div class="row">
<div class="col-sm-12">
<!-- Blog Grid Posts -->
<div class="tm-blog-grid">
<div class="row">
<div class="col-sm-8 left-block">
<?php if($breadcrumb_type == 'disable'): ?>
<h1 class="title blog-post col-lg-12 "><?php printf(esc_html__('Search Results for: %s', 'log-book'), '<span>' . get_search_query() . '</span>'); ?></h1>
<?php endif; ?>
<?php if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content');
endwhile; // End of the loop.
else : ?>
<div class="blog-post search-not-found">
<article class="wrong-search-wrapper text-center post">
<h4><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'log-book' ); ?></h4>
<?php get_search_form(); ?>
</article>
</div>
<?php endif; ?>
<div class="tm-pagination">
<?php the_posts_pagination( array(
'mid_size' => 2,
'prev_text' => __( '<<', 'log-book' ),
'next_text' => __( '>>', 'log-book' ),
) ); ?>
</div>
</div>
<div class="col-md-4">
<div class="tm-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
</div>
</div>
</div>
</div><!-- .row -->
</section>
</div>
<?php get_footer();