-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
40 lines (33 loc) · 1.17 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
<?php get_header(); ?>
<div class="section site-body">
<div class="section-inner">
<h1><?php the_search_query(); ?></h1>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php echo '<div class="featuredThumbnail">'; the_post_thumbnail(); echo '</div>'; ?>
<p>
Written on <?php the_time('F j, Y'); ?> at <?php the_time() ?>, by <?php the_author_posts_link() ?>
</p>
<div class="post-excerpt">
<?php the_excerpt(); ?>
</div><!--.post-excerpt-->
<?php endwhile; else: ?>
<div class="no-results">
<h2>Sorry, no results were found</h2>
<p>
Please try another search term.
</p>
</div><!--noResults-->
<?php endif; ?>
<div class="newer-older">
<div class="older">
<?php previous_posts_link('<span></span> Previous Posts'); ?>
</div><!--.older-->
<div class="newer">
<?php next_posts_link('Newer posts <span></span>'); ?>
</div><!--.older-->
</div><!--.newer-older-->
<?php get_sidebar(); ?>
</div>
</div><!-- #content -->
<?php get_footer(); ?>