WordPress:archive.php 中的 posts_per_page 导致 404 错误
我试图在循环之前使用以下 query_posts 函数来控制 archive.php 模板列出的帖子数量:
<?php query_posts('posts_per_page=1'); ?>
<?php <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
此 query_posts 设置在 archive.php 中的工作方式与在 index.php 中的工作方式相同:它将在事实上显示一篇文章,但单击以前的文章会将我指向 404 错误模板。
我在网络和 StackOverflow 上其他地方寻找解决方案,但未能找到任何有效的解决方案。我还尝试了以下方法但没有成功:
<?php global $query_string; query_posts($query_string . '&posts_per_page=1&paged=' . $paged); ?>
并且
<?php global $query_string; query_posts($query_string . '&posts_per_page=1'); ?>
I'm trying to control the number of posts listed by the archive.php template using the following query_posts function before the loop:
<?php query_posts('posts_per_page=1'); ?>
<?php <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
This query_posts setup doesn't work in archive.php the same way it does for index.php: it will in fact display one post, but clicking on previous posts points me to the 404 error template.
I've looked elsewhere on the web and on StackOverflow for solutions, but have not been able to find a anything that works. I've also tried the following without success:
<?php global $query_string; query_posts($query_string . '&posts_per_page=1&paged=' . $paged); ?>
and
<?php global $query_string; query_posts($query_string . '&posts_per_page=1'); ?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1) 以管理员身份登录 WordPress。
2) 转到“设置”选项卡。
3)转到阅读选项卡。
4)将最多显示的博客页面从默认的10个更改为任意数量*小于10。
例如,5。
5) 保存更改。
查看博客。
将数量修改为小于10,希望对您有所帮助。它修复了我的。
在调试时,我发现默认的每页帖子选项应该小于 query_posts 函数中的任何自定义 posts_per_page 。就这样。很奇怪,但这就是事实。
1) Login as the admin in WordPress.
2)Go to the Settings tab.
3)Go to the Reading tab.
4)Change the Blog pages show at most from the default 10 to any number *less than 10.
For example, 5.
5)Save the changes.
View the blog.
edit the number to less than 10, hope it helps you out. It fixed mine.
while debugging i found out that default posts per page option should be less than any custom posts_per_page in query_posts function. That's all. Weird, but that's the fact.
在我的例子中,有一些可能的原因是永久链接和 .htacces 规则的问题
阅读这篇文章可能会有所帮助
http://www.wordimpressed.com/ wordpress/solve-wordpress-custom-post-type-404-error-issues/
我使用这个插件进行查询字符串校正
http://wordpress.org/extend/plugins/category-pagination-fix/常见问题解答/
There are some possible reasons in my case it was a problem with permalinks and .htacces rules
Read this post may help
http://www.wordimpressed.com/wordpress/solve-wordpress-custom-post-type-404-error-issues/
I use this plugin for querystring correction
http://wordpress.org/extend/plugins/category-pagination-fix/faq/