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.

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' );