我的网站上的分页无法正常工作,其他一切都很好,但是当我点击进入“/ page / 2/3 /”时,它显示没有找到页面错误。
错误页面:http://savemoney.16mb.com/page/2/
当前Front Page设置为“Latest Posts”(非静态页面)
分页代码(Frontpage.php):
<?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, 'paged' => $paged ) );
?>
<?php get_template_part('loop', 'coupon'); ?>`
有关如何正确运行此分页的任何建议都将不胜感激!
谢谢, Ť
答案 0 :(得分:0)
你试过, "add_args" => false
吗?