-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtag.php
More file actions
60 lines (50 loc) · 1.44 KB
/
tag.php
File metadata and controls
60 lines (50 loc) · 1.44 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
get_header();
$post = get_post($_GET['id']);
?>
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="row">
<div class="col-xs-12">
<div class="page-header">
<h2 class="text-center text-primary"><?php single_tag_title(); ?></h2>
</div>
</div>
<?php
if(have_posts()):
while (have_posts()):
the_post(); ?>
<div class="col-xs-12 col-sm-6 tag-tour-col">
<a href="<?php the_permalink(); ?>">
<div class="tag-tour-inner">
<div class="tag-tourImage">
<?php the_post_thumbnail( 'full', array(
'class' => 'img-responsive',
'alt' => 'Featured Image'
)); ?>
</div>
<div class="tour-inner-mask"></div>
<div class="tourContent">
<div class="tourContent-inner">
</div>
</div>
</div>
</a>
</div>
<?php
endwhile;
else:
echo '<h3>Результов нет... </h3>';
endif;
?>
</div>
</div> <!-- col-md-9 -->
<?php
get_sidebar();
?>
</div> <!-- row -->
</div> <!-- container -->
<?php
get_footer();
?>