-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
62 lines (33 loc) · 1.6 KB
/
index.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
52
53
54
55
56
57
58
59
60
61
62
<?php get_header(); ?>
<div class="content section-inner">
<?php if ( have_posts() ) : ?>
<div class="posts">
<?php
$paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;
$total_post_count = wp_count_posts();
$published_post_count = $total_post_count->publish;
$total_pages = ceil( $published_post_count / $posts_per_page );
if ( "1" < $paged ) : ?>
<div class="page-title">
<h4><?php printf( __( ' %1$s / %2$s', 'nayncuration' ), $paged, $wp_query->max_num_pages ); ?></h4>
</div>
<div class="clear"></div>
<?php endif; ?>
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php get_template_part( 'content', get_post_format() ); ?>
<div class="clear"></div>
</div><!-- .post -->
<?php endwhile; ?>
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div class="post-nav archive-nav">
<?php echo get_next_posts_link( __( '« Eski<span> içerikler</span>', 'nayncuration' ) ); ?>
<?php echo get_previous_posts_link( __( 'Yeni<span> içerikler</span> »', 'nayncuration' ) ); ?>
<div class="clear"></div>
</div><!-- .post-nav archive-nav -->
<div class="clear"></div>
<?php endif; ?>
<?php endif; ?>
</div><!-- .posts -->
</div><!-- .content section-inner -->
<?php get_footer(); ?>