-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
32 lines (28 loc) · 1.04 KB
/
search.php
File metadata and controls
32 lines (28 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
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="col-md-9">
<h2>Результат поиска: <?=get_search_query()?></h2>
<?php if(have_posts()): while (have_posts()): the_post(); ?>
<div class="col-md-6">
<div class="tour_country_wr">
<div class="no-gutter">
<div class="col-md-12 tour_img">
<div class="tour_country_wr">
<a href="<?php the_permalink(); ?>"><?=the_post_thumbnail(array(380,197)); ?></a>
</div>
</div>
<div class="col-md-6"></div>
</div>
</div>
</div>
<?php endwhile; else:
echo '<h3>Результов нет... </h3>';
endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php get_footer(); ?>