-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsearch.php
60 lines (44 loc) · 1.25 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
<?php
/**
* Search Template
* Displays search results
*
* @package Desk_Mess_Mirrored
* @since 2.2
*
* @link http://buynowshop.com/themes/desk-mess-mirrored/
* @link https://github.com/Cais/desk-mess-mirrored/
* @link https://wordpress.org/themes/desk-mess-mirrored/
*
* @author Edward Caissie <edward.caissie@gmail.com>
* @copyright Copyright (c) 2009-2016, Edward Caissie
*/
get_header(); ?>
<div id="maintop"></div>
<div id="wrapper">
<div id="content">
<div id="main-blog">
<?php if ( have_posts() ) {
printf(
sprintf(
'<div class="search-found-text">%1$s <span class="search-query">%2$s</span></div>',
__( 'We found something! It looks like you searched for ...', 'desk-mess-mirrored' ),
get_search_query()
)
);
while ( have_posts() ) {
the_post();
get_template_part( 'desk-mess-mirrored', get_post_format() );
}
get_template_part( 'dmm-navigation' );
} else {
dmm_no_posts_found();
} ?>
</div>
<!--end main blog-->
<?php get_sidebar(); ?>
<div class="clear"></div>
</div>
<!--end content-->
</div><!--end wrapper-->
<?php get_footer();