如何自定义 wp_get_archives();与 WordPress 档案
我想自定义我的档案以按月排序,但如果是在上一年,则将其分组为年度类别。现在我有:
<ul><?php wp_get_archives('type=postbypost&limit=10'); ?></ul>
这显示了最后 10 篇帖子。我知道以下内容将按月份排序:
<ul><?php wp_get_archives('type=monthly'); ?></ul>
但是当月份小于 12 时,如何让它按年份排序?我希望它看起来像下面这样:
- 2010 年 3 月
- 2010 年 2 月
- 2010 年 1 月
- 2009
提前致谢。
I want to customize my archives to sort by month, but if it was in the previous year to group itself into a yearly category. Right now I have:
<ul><?php wp_get_archives('type=postbypost&limit=10'); ?></ul>
That shows the last 10 posts. I know that the following will sort by month:
<ul><?php wp_get_archives('type=monthly'); ?></ul>
But how do I get it to sort by year when the month is less recent than 12? I want it to look like the following:
- March 2010
- February 2010
- January 2010
- 2009
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道是否有内置方法可以做到这一点,我会使用带有自定义查询的函数,如下所示:
然后使用链接和所有内容格式化结果。
I don't know if there's a builtin way to do this, I'd use a function with custom query like this:
then format the results with links and all.