-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
43 lines (37 loc) · 1.06 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
41
42
43
<?php get_header(); ?>
<main id="content">
<?php if ( have_posts() ) : ?>
<div class="inform">
<h1><?php _e( 'Search results for', 'aperitto' ); ?> «<?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(
apply_filters(
'aperitto_search_posts_pagination_args',
array(
'mid_size' => 2,
'prev_text' => __( '« Prev', 'aperitto' ),
'next_text' => __( 'Next »', 'aperitto' ),
)
)
);
?>
<?php else : ?>
<article class="post">
<h1><?php _e( 'No results for ', 'aperitto' ); ?> «<?php the_search_query(); ?>»</h1>
<?php get_search_form(); ?>
</article>
<?php endif; ?>
</main> <!-- #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>