-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
executable file
·34 lines (28 loc) · 1.02 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
<?php get_header(); ?>
<main id="content">
<?php if (have_posts()) : ?>
<div class="inform">
<h1><?php _e( 'Search results for', 'spokane-food-policy' ); ?> «<?php the_search_query() ?>»</h1>
<?php get_search_form(); ?>
</div>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?> id="postid-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="entry clearfix"><?php the_excerpt(); ?></div>
</div>
<?php endwhile; ?>
<?php the_posts_pagination( array(
'mid_size' => 2,
'prev_text' => __( '« Prev', 'spokane-food-policy'),
'next_text' => __( 'Next »', 'spokane-food-policy'),
) );
?>
<?php else : ?>
<article class="post">
<h1><?php _e( 'No results for ', 'spokane-food-policy' ); ?> «<?php the_search_query() ?>»</h1>
<?php get_search_form(); ?>
</article>
<?php endif; ?>
</main> <!-- #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>