Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm creating a site with a custom post type. I added category support, which didn't affect anything. But when I added a new post with a category, none of my posts showed up in the "edit posts" admin area for the post type. Neither did they show up in the front end, nor could I preview them.

I flushed the permalinks but no change.

No posts are showing up under the edit post area

Here's how I'm setting up the post types. Deleting category support from "taxonomies" and "supports" doesn't bring them back, but new posts show up fine.

function codex_custom_init() {
  $args = array(
    'labels' => 'Portfolio',
    'public' => true,
    'publicly_queryable' => true,
    'show_ui' => true, 
    'show_in_menu' => true, 
    'query_var' => true,
    'rewrite' => true,
    'capability_type' => 'post',
    'has_archive' => true, 
    'hierarchical' => false,
    'menu_position' => 3,
    'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt','category'),
    'taxonomies' => array('category'),
    'register_meta_box_cb' => 'wellington_add_post_meta_boxes'
  ); 
  register_post_type('portfolio',$args);
}
add_action( 'init', 'codex_custom_init' );
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.