WordPress 3.0.1 中的自定义帖子类型和分类永久链接重写
我有一个“故事” 自定义帖子类型和“艺术家”、作家 分类法。
我需要在functions.php中设置重写规则,以使永久链接看起来像这样:
艺术家(分类/类别):
http://www.example.com/isaac-deutscher
(/%艺术家%)
作者(分类/类别):
http://www.example.com/jean-paul-sartre
(/%writer%)
故事(自定义帖子类型):
http://www.example.com/issac-deutscher/jean-paul-sartre/the-cat-is-under-the-table
(/%艺术家%/%作家%/%故事%)
我尝试了在博客中找到的一些代码但没有成功,并且不知道如何解决这个问题。
我正在使用 Wordpress 3.0.1
I have a 'story' Custom Post Type and 'artist', writer' Taxonomies.
I need to set rewrite rules in the functions.php for the permalinks to look like this:
Artist (Taxonomy/Category):
http://www.example.com/isaac-deutscher
(/%artist%)
Writer (Taxonomy/Category):
http://www.example.com/jean-paul-sartre
(/%writer%)
Story (Custom Post Type):
http://www.example.com/issac-deutscher/jean-paul-sartre/the-cat-is-under-the-table
(/%artist%/%writer%/%story%)
I have tried some code I found in blogs without success, and can't figure out how to solve this.
I'm working in Wordpress 3.0.1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对故事和艺术家有用,但对作家则不然:
希望它有帮助。
This does the trick for Story and Artist, but not for Writer:
Hope it helps.