让 wp_list_categories() 自定义 walker 进行分页
我已经注册了自定义帖子类型,具有自定义分类法,一切都很好且清晰。
我希望我能以某种方式通过分页显示分类法的所有类别。
我正在使用自定义类别 Walker,并且正在考虑注册用于页面查询的自定义页面重写,并向类别 walker 添加一些代码以仅显示所需的间隔。我的方向正确吗?
此外,wp_list_categories 向类别 Walker 发送整个类别列表。有什么办法可以只得到所需的间隔吗?
I've got a custom post type registered, with custom taxonomies, everything good and clear.
I wish I could somehow display all the categories of the taxonomy with pagination.
I am using a custom category Walker and am thinking to register a custom page rewrite for page query, and add some code to the category walker to display only the desired interval. Am I on the right direction?
Also, wp_list_categories sends to the category Walker the entire list of categories. Is there any way to get only the desired interval?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这个特定的设置中,没有。
但我找到了一个解决方法:我注册了一个函数,每次在分类法中添加类别时,该函数都会创建自定义类型的帖子。这样我就使用了自定义帖子类型的存档功能,该功能在 3.1-RC1 中提供。
In this particular setup, no.
But I found a workaround: I registered a function that created a custom-type post each time I added a category in the taxonomy. That way I used the archive feature for custom post types, made available in 3.1-RC1.