-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsearch.php
26 lines (26 loc) · 1.11 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
<?php get_header(); ?>
<div id="container">
<div id="form_box">
<h2><?php _e('Search Results for', 'roots'); ?> <?php echo get_search_query(); ?></h2>
<?php if (!have_posts()) : ?>
<p style="font-weight: bold; font-size: 16px;"><?php _e('Sorry, no results were found.', 'roots'); ?></p>
<?php endif; ?>
<?php while ( have_posts() ) : the_post(); ?>
<h3 style="font-size: 16px; padding: 10px 0px 0px">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h3>
<?php the_excerpt(); ?>
<?php endwhile; ?>
<?php if ($wp_query->max_num_pages > 1) : ?>
<div id="post-nav">
<div class="post-previous"><?php next_posts_link( __( '← Older posts', 'roots' ) ); ?></div>
<div class="post-next"><?php previous_posts_link( __( 'Newer posts →', 'roots' ) ); ?></div>
</div>
<?php endif; ?>
<?php get_sidebar(); ?>
<div class="clear"></div>
</div> <!-- end #form_box -->
</div> <!-- end #container -->
</div> <!-- end #main -->
</div> <!-- end #wrap -->
<?php get_footer(); ?>