-
Notifications
You must be signed in to change notification settings - Fork 0
/
tag.php
34 lines (30 loc) · 1.08 KB
/
tag.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
<?php get_header(); ?>
<div class="container">
<div class="row mobil-row">
<div class="col-8 kutu kutu-yan icerik-kutu">
<div class="container">
<div class="son-haberler">
<span class="son-yazilar">
<div class="son-yazilar-icon"><i class="fa fa-book"></i></div>
<a>Tag: <?php single_tag_title(); ?></a>
</span>
</div>
<?php if ( have_posts() ) : while ( have_posts() ) :
the_post(); ?>
<?php include "inc/post_box.php"; ?>
<?php endwhile; else: ?>
<?php _e( '<div class="bisey-bulunmadi">Bişey Bulunmadı...</div>' ); ?>
<?php endif; ?>
<?php include "inc/pagination.php"; ?>
</div>
</div>
<div class="col-4 mobil-kutu">
<?php
if ( ! dynamic_sidebar( 'sidebar' ) ) :?>
<?php endif; ?>
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php
get_footer();