Add own index.php to change posts per page to 12
This commit is contained in:
parent
2dba9cd6c3
commit
8c44481d51
1 changed files with 45 additions and 0 deletions
45
index.php
Normal file
45
index.php
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
<?php get_header(); ?>
|
||||
|
||||
<div class="content section-inner">
|
||||
<?php $posts_per_page = 12; ?>
|
||||
<?php if (have_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( __('Page %s of %s', 'hitchcock'), $paged, $wp_query->max_num_pages ); ?></h4>
|
||||
|
||||
</div> <!-- /page-title -->
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="posts" id="posts">
|
||||
|
||||
<?php while (have_posts()) : the_post(); ?>
|
||||
|
||||
<?php get_template_part( 'content', get_post_format() ); ?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
</div> <!-- /posts -->
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
<?php hitchcock_archive_navigation(); ?>
|
||||
|
||||
</div> <!-- /content -->
|
||||
|
||||
<?php get_footer(); ?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue