forked from june29/wp29
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
34 lines (21 loc) · 913 Bytes
/
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
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<h2 class="page-title">Search results for "<?php echo $s; ?>"</h2>
<div class="navigation">
<div class="align-left"><?php next_posts_link('<< Older posts') ?></div>
<div class="align-right"><?php previous_posts_link('Newer posts >>') ?></div>
</div>
<?php while (have_posts()) : the_post(); ?>
<?php include (TEMPLATEPATH . '/entry.php'); ?>
<?php endwhile; ?>
<div class="navigation">
<div class="align-left"><?php next_posts_link('<< Older posts') ?></div>
<div class="align-right"><?php previous_posts_link('Newer posts >>') ?></div>
</div>
<?php else : ?>
<div class="page-title">There is no results for "<?php echo $s; ?>".</div>
<div class="no-result">Please try other word.</div>
<?php endif; ?>
</div>
<?php get_footer(); ?>