How to make custom posts to behave like taxonomy?

I would like to have a database of fashion models on my blog.

The models section will be located under /models/. There shall be a loop of recent posts with models as well as the full list of models names.

Read More

Singe page of a model shall have URL: /models/kate-moss.

Each model’s single page should be a custom wordpress post, including basic description, photos and special fields like age and birth date, weight and height etc.

On the single page template below the description of the model there shall be a list of posts related to the person.

One more important thing: when an author publishes a post they should be able to simply choose the related person from the list with a checkbox.

In other words the person is neither custom taxonomy nor custom post, it is both. But how to implement it?

Related posts

Leave a Reply

3 comments

  1. What I need is to have a landing page of /models/ with a loop of all
    posts with models sorted by date or page views as well as full list of
    models, then I need a page of a single model /models/kate-moss/. Is
    this possible?

    Judging from this, what you originally asked is not what you want at all, so any answer trying to answer it will not be accepted. Ideally I should flag this and attempt to close it, or edit your question based on what you revealed in your comment.

    If you have a post type named models then add an archive-models.php in your theme and put your loop in there. That will be the archive for your models post type, aka your landing page.