-
Notifications
You must be signed in to change notification settings - Fork 4
/
search.php
53 lines (38 loc) · 1.68 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
44
45
46
47
48
49
50
51
<?php get_header(); ?>
<?php get_template_part('breadcrumb'); ?>
<div id="primary" class="content-area category_template">
<div class="container">
<div class="row">
<main id="main" class="col-xs-12 col-sm-8 col-md-8" role="main">
<article class="equal-heights">
<div class="entry-header">
<h1><?php _e( 'Search Results Found For', 'locale' ); ?> <?php the_search_query(); ?></h1>
</div>
<?php if ( have_posts() ) { ?>
<ul>
<?php while ( have_posts() ) { the_post(); ?>
<li>
<h3><a href="<?php echo get_permalink(); ?>">
<?php the_title(); ?>
</a></h3>
<?php the_post_thumbnail('medium') ?>
<?php echo substr(get_the_excerpt(), 0,200); ?>
<div class="h-readmore"> <a href="<?php the_permalink(); ?>">Read More</a></div>
</li>
<?php } ?>
</ul>
<?php paginate_links(); ?>
<?php } ?>
</article>
</main>
<aside id="sidebar" class="col-xs-12 col-sm-4" role="complementary">
<div class="sidebar-header">
<h2>Search</h2>
</div>
<?php get_search_form(); ?>
</aside>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>