-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
executable file
·45 lines (44 loc) · 1.04 KB
/
Copy pathsearch.php
File metadata and controls
executable file
·45 lines (44 loc) · 1.04 KB
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
<?php
/**
* The template for displaying search results pages
*
* @package same
*/
get_header();
?>
<section id="content">
<div class="wrapper page_text">
<?php get_template_part( 'breadcrumbs' ); ?>
<h1 class="page_title" ><?php esc_html_e( 'Search results', 'same' ); ?></h1>
<div class="columns">
<div class="column column75">
<div class="wrapper page_text">
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
?>
<div class="article">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<div class="clr"></div>
<?php the_post_thumbnail(); ?>
<?php the_excerpt(); ?>
<p><a href="<?php the_permalink(); ?>"><?php esc_html_e( 'Read more', 'same' ); ?></a></p>
</div>
<?php
endwhile;
else :
?>
<p><?php esc_html_e( 'Nothing found', 'same' ); ?></p>
<?php endif; ?>
</div>
</div>
<?php
get_sidebar();
?>
<div class="clr"></div>
</div>
</div>
</section>
<?php
get_footer();