【发布时间】:2015-03-12 04:49:32
【问题描述】:
我的网站上的分页不起作用,其他一切都很好,但是当我点击转到“/page/2/3/”时,它显示没有找到页面错误。
错误页面:http://savemoney.16mb.com/page/2/
当前首页设置为“最新帖子”(非静态页面)
分页代码(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'); ?>`
任何有关如何使此分页正常工作的建议将不胜感激!
谢谢, T
【问题讨论】:
标签: php jquery wordpress pagination