forked from ThemeZee/courage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
58 lines (33 loc) · 1.28 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
<?php get_header(); ?>
<?php // Get Theme Options from Database
$theme_options = courage_theme_options();
?>
<div id="wrap" class="clearfix">
<section id="content" class="primary" role="main">
<?php if ( function_exists( 'themezee_breadcrumbs' ) ) themezee_breadcrumbs(); ?>
<header class="page-header">
<h1 id="search-title" class="archive-title">
<?php printf( esc_html__( 'Search Results for: %s', 'courage' ), '<span>' . get_search_query() . '</span>' ); ?>
</h1>
</header>
<?php if (have_posts()) : while (have_posts()) : the_post();
if ( 'post' == get_post_type() ) :
get_template_part( 'content', $theme_options['posts_length'] );
else :
get_template_part( 'content', 'search' );
endif;
endwhile;
courage_display_pagination();
else : ?>
<div class="type-page">
<h2 class="page-title entry-title"><?php esc_html_e( 'No matches', 'courage' ); ?></h2>
<div class="entry clearfix">
<p><?php esc_html_e( 'Please try again, or use the navigation menus to find what you search for.', 'courage' ); ?></p>
<?php get_search_form(); ?>
</div>
</div>
<?php endif; ?>
</section>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>