-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
39 lines (32 loc) · 1.05 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
<?php
/**
* @package WordPress
* @subpackage Adapt Theme
*/
?>
<?php get_header(); ?>
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts($query_string .'&posts_per_page=10&paged=' . $paged);
if (have_posts()) : ?>
<header id="page-heading">
<h1 id="archive-title"><?php _e('Search Results For', 'adapt'); ?>: <?php the_search_query(); ?></h1>
</header>
<!-- /page-heading -->
<div id="post" class="post clearfix">
<?php get_template_part( 'loop' , 'entry') ?>
<?php pagination(); ?>
</div>
<!-- /post -->
<?php else : ?>
<header id="page-heading">
<h1 id="archive-title"><?php _e('Search Results For', 'adapt'); ?> "<?php the_search_query(); ?>"</h1>
</header>
<!-- /page-heading -->
<div id="post" class="post clearfix">
<?php _e('No results found for that query.', 'adapt'); ?>
</div>
<!-- /post -->
<?php endif; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>