我在我的类别模板上使用带有query_posts的简单循环,并使用自定义分页功能。第一页效果很好,但是当我使用下一个按钮到达下一页(/ page / 2)时,我收到404错误。
在我的category.php中:
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array ( 'category' => ID, 'posts_per_page' => 6, 'paged' => $paged);
$myposts = query_posts( $args );
if(have_posts()) :
foreach( $myposts as $post ) : setup_postdata($post);
?>
<article>
...
</article>
<?php
endforeach;
else :
echo '<p class="intro-contact">' . _e( 'No news available', 'cja_theme' ) . '</p>';
endif;
cja_numeric_posts_nav();
?>
.htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /public/www.mywebsite.com/
RewriteRule ^la-residence/$ la-residence/qui-sommes-nous/ [L,R=301]
RewriteRule ^informations/$ informations/acces-a-la-residence/ [L,R=301]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /public/www.mywebsite.com/index.php [L]
</IfModule>
生成的网址是正确的,而在后台办公室中,每页的最大帖子数也设置为6。我尝试在我的functions.php文件中使用该修复程序,但它没有帮助:
function cja_fix_pagination($query_string)
{
if(!is_home())
$query_string['posts_per_page'] = 6;
return $query_string;
}
add_filter('request', 'cja_fix_pagination');
答案 0 :(得分:1)
这正是为什么你永远不应该使用query_posts以及为什么你永远不应该使用自定义查询来替换任何类型的存档页面上的主查询
要解决您的问题,请返回默认循环
if(have_posts()) {
while(have_posts()) {
the_post();
//YOUR LOOP ELEMENTS
}
}
然后,在您的functions.php中,使用pre_get_posts
相应地更改主查询
function ppp_category( $query ) {
if ( !is_admin && $query->is_category() && $query->is_main_query() ) {
$query->set( 'posts_per_page', '6' );
}
}
add_action( 'pre_get_posts', 'ppp_category' );