• Basically:
    We need category functionality on the front side, but with custom post type functionality on the back (admin) side.

    Details:
    We need both the normal functionality of categories and the admin menu enhancements that custom post types offer (such as can be obtained by using the Custom Post Types UI plugin).

    It would be awesome if either the Category Write Panel plugin’s effects did not have such a low limit on how many top-level categories can be used (any more than 17 starts making normal admin menu items disappear, eating away needed functionality), or if the Custom Post Types UI plugin’s options in the Admin menu could trigger (or correspond to) categories in addition to (or instead of) custom post types.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Bump…

    We have the exact same requirement… We would ideally like to use a custom post template on the back end and have those posts share categories with and “comingle” with the “standard” post types in the loop…

    Any suggestions?

    Thanks in advance!

    In our case the formatting of the posts on the front end would be slightly different (more structured)…

    If you want both types of posts on the front, you just need to query both using query_posts
    post, and your custom type

    Thanks Rev.! Really appreciate the reply…

    I think I will also need to change the post template to include the custom fields etc. from the custom posts… The trick will be to figure out how to do the template so that it accomodates both post types and provides the content in the structure desired…

    Thanks again!

    sure, from the codex: query_posts( array( 'post_type' => array('post', 'movie') ) );

    would display the normal post type, and the movie post type on your page….but don’t forget about pagination

    https://www.rvoodoo.com/projects/wordpress/wordpress-tip-fixing-pagination-on-custom-queries-with-query_posts/

    is a quick blurb about ensuring pagination with custom queries

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Way to combine custom post type with categories?’ is closed to new replies.