forked from bueltge/wordpress-basis-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
82 lines (64 loc) · 2.04 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
<?php
/**
* The Template for displaying the search results.
*
* @package WP Basis
* @subpackage
* @since 06/06/2012 0.0.1
* @version 06/06/2012
* @author fb
*/
get_header();
do_action( 'wp_basis_search_before_content' );
?>
<section id="primary" class="site-content">
<div id="content" role="main">
<?php
// Whether current WordPress query has results to loop over
if ( have_posts() ) {
do_action( 'wp_basis_search_query_result' );
$defaults = array(
'tag' => 'header',
'class' => 'page-header',
'before_txt' => '<h1 class="page_title">',
'txt' => sprintf(
__( 'Search Results for: %s', 'wp_basis' ),
'<span>' . get_search_query() . '</span>'
),
'after_txt' => '</h1>'
);
$args = wp_parse_args( $args = array(), apply_filters( 'wp_basis_search_title', $defaults ) );
// check for class param
if ( ! empty( $args['class'] ) )
$class = ' class="' . $args['class'] . '"';
// check for param tag, if empty, don't generate markup
if ( ! empty( $args['tag'] ) ) {
$title = '<' . $args['tag'] . $class . '>' . $args['before_txt'] . $args['txt'] . $args['after_txt'] . '</' . $args['tag'] . '>';
} else {
$title = $args['before_txt'] . $args['txt'] . $args['after_txt'];
}
echo $title;
/* Start the Loop */
while ( have_posts() ) :
the_post();
/**
* If you want to overload this in a child theme then include a file
* called content-search.php and that will be used instead.
*/
get_template_part( 'parts/content', 'search' );
endwhile;
// if the loop has no results
} else {
/**
* Include the template for the loop dosn't find and result
* If you will overwrite this in in a child theme the include a file
* called no-results-search.php and that will be used instead.
*/
get_template_part( 'parts/no-results', 'search' );
} // endif
?>
</div> <?php // end #content ?>
</section> <?php // end section #primary
do_action( 'wp_basis_search_after_content' );
get_sidebar();
get_footer();