WordPress 自定义帖子类型以页面为父级?
我的新 WP 项目中有很多自定义类型项目,出于导航原因,我想将其中一些项目的父级设置为 Wordpress 页面。问题是,显然,Wordpress 不允许您在不同帖子类型的项目之间建立父子关系。
有什么办法可以覆盖这个吗?我正在使用 WordPress 3.1
I have a lot of custom type items in my new WP project, and for navigation reasons, I want to make the parent to some of them a Wordpress page. The problem is that apparently, Wordpress does not let you establish parent-child relationships between items with different post type.
Is there anyway to override this? I am using Wordpress 3.1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建 archive-[post-type].php 文件以显示为存档,或创建 single-[post-type].php 文件以显示单个帖子。
You can create the archive-[post-type].php files to show as archive or single-[post-type].php to show indiviual posts.
您需要帖子类型父级具有哪些“页面”功能?我猜您只是希望能够编辑页面标题和页面标题。来自后端的内容。
如果是这种情况,请尝试以下操作:
代码:
What functionality of the "page" do you need the post type parent to have? I'm guessing that you just want to be able to edit the page title & content from the backend.
If that is the case, try the following:
Code: