I have created a custom post type called ‘Case Studies’ … What i want to be able to do is display the box with the categories of normal posts inside the Case Studies ‘add case study page’, so i can choose posts that are associated with the case study im making.
All this done in the admin section.
Any suggestions would be great.
Cheers,
In your
register_post_type
function’s arguments array parameter, add the following key and array value to add the regular categories in the custom post type add/edit page:'taxonomies' => array("category")
For example:
For details see the WordPress register_post_type function documentation.
try this or check this tutorial
Ohh, interesting. Not that i have done this before but i just thinking of it makes it exciting. I do things a little dirty so forgive me.
I would a special tag to my custom post. Then add a second loop to my custom post that would query posts based on that tag.