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
There are way’s to get around it to create this kind of grouping or relationship:
field to the parent ID (by manually
i mean code something that will do
that for you when you publish a
CPT).
create a grouping of posts and you
will have the ability to filter /
query posts based on that taxonomy
term.
query posts based on that custom field
depends on your needs but i think at least one of these should do the job.
You just need to make sure the custom post type it’s hierarchical.
So within your register_post_type function, make sure there’s an argument ‘hierarchical’ => TRUE