Homepage pagination doesn't work
From first install pagination from homepage doesn't work correct it is displaying error on /page/2. But in other pages it works great, so it is problem only on homepage.
http://promokot.com.ua/
http://promokot.com.ua/page/2/
Using /%postname%/ permalink structure.
Code on homepage:
<?php
// show all coupons and setup pagination
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
query_posts( array(
'post_type' => APP_POST_TYPE,
'post_status' => $post_status,
'ignore_sticky_posts' => 1,
'posts_per_page' => 10 ) );
?>
<?php get_template_part('loop', 'coupon'); ?>
Do you know, how to fix this problem?
Or it would be great to display only on homepage fixed amount of coupons (for example, last ten). Without any pagination.
Thanks in advance!