Forums

Query posts on custom post type category (3 posts)

  1. shmk
    Member
    Posted 8 months ago #

    I've made a custom post type with a new custom category attached to it.

    On query_posts (and similar) how could I filter the custom posts by custom category?

  2. SimpThirteen
    Member
    Posted 8 months ago #

    You can display posts from specific categories by adding:
    query_posts(cat="your_category");

    your_category is the numeric code for the category itself which you can get from the admin menu. So if the category is say 17 your code would be:
    query_posts(cat=17);

  3. dfwgreg
    Member
    Posted 8 months ago #

    Add in query_posts(post_type="name of post type") as well as the category name or number.

Reply

You must log in to post.

About this Topic