forked from ThematicTheme/Thematic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
99 lines (64 loc) · 2.65 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
/**
* Search Template
*
* …
*
* @package Thematic
* @subpackage Templates
*/
// calling the header.php
get_header();
// action hook for placing content above #container
thematic_abovecontainer();
// filter for manipulating the output of the #container opening element
echo apply_filters( 'thematic_open_id_container', '<div id="container" class="content-wrapper">' . "\n\n" );
// action hook for inserting contentabove #content
thematic_abovecontent();
// filter for manipulating the element that wraps the content
echo apply_filters( 'thematic_open_id_content', '<div id="content" class="site-content" role="main">' . "\n\n" );
if ( have_posts() ) {
// displays the page title
thematic_page_title();
// create the navigation above the content
thematic_navigation_above();
// action hook for placing content above the search loop
thematic_above_searchloop();
// action hook creating the search loop
thematic_searchloop();
// action hook for placing content below the search loop
thematic_below_searchloop();
// create the navigation below the content
thematic_navigation_below();
} else {
// action hook for inserting content above #post
thematic_abovepost();
?>
<div id="post-0" class="post noresults">
<h1 class="entry-title"><?php _e( 'Nothing Found', 'thematic' ) ?></h1>
<div class="entry-content">
<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'thematic' ) ?></p>
</div><!-- .entry-content -->
<form id="noresults-searchform" method="get" action="<?php echo home_url() ?>/">
<div>
<input id="noresults-s" name="s" type="text" value="<?php the_search_query(); ?>" size="40" />
<input id="noresults-searchsubmit" name="searchsubmit" type="submit" value="<?php esc_attr_e( 'Find', 'thematic' ) ?>" />
</div>
</form>
</div><!-- #post -->
<?php
// action hook for inserting content below #post
thematic_belowpost();
}
// filter for manipulating the output of the #content closing element
echo apply_filters( 'thematic_close_id_content', '</div><!-- #content -->' . "\n\n" );
// action hook for placing content below #content
thematic_belowcontent();
// filter for manipulating the output of the #container closing element
echo apply_filters( 'thematic_close_id_container', '</div><!-- #container -->' . "\n\n" );
// action hook for placing content below #container
thematic_belowcontainer();
// calling the standard sidebar
thematic_sidebar();
// calling footer.php
get_footer();