Wordpress 按年份归档“query_posts()”问题
我创建了一个存档列表 (这也是我的博客上的 archive.php 代码),我想按年份显示帖子。
但是,当我使用 query_posts()
函数排除某些类别并限制帖子时,它会显示所有帖子,而不是按年份。
例如,此页面显示所有帖子,而不仅仅是 2009 年的帖子。
所以如果我总结一下这个问题;我想按年份显示存档列表(当我输入/2009/永久链接时)+排除一些类别并限制帖子。
谢谢。
I created an Archive list (also this is my archive.php codes) on my blog and i want to show posts by years.
But when i use query_posts()
function for excluding some categories and limit posts then it's showing all posts not by year.
For example this page is showing all posts not only posts in 2009 years.
So if i summarize this issue; i want to show archive list by year (when i enter /2009/ permalink)+exclude some categories and limit posts.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许当您使用全局变量 $query_string 时,它会有所帮助。
所以你必须像codex提到的那样使用它
,在这里:查询帖子,
maybe when you use global variable, $query_string, it will help.
so you must use it like this
as codex mention, here : query post,