yeah still getting the "search found nothing" results. I disabled every plugin too. Not sure if this helps but here is the code i used to register the post_type and taxonomies....
// The register_post_type() function is not to be used before the 'init'.
add_action( 'init', 'my_custom_init' );
/* Here's how to create your customized labels */
function my_custom_init() {
$labels = array(
'name' => _x( 'KB Articles', 'post type general name' ), // Tip: _x('') is used for localization
'singular_name' => _x( 'KB Article', 'post type singular name' ),
'add_new' => _x( 'Add New', 'kb_article' ),
'add_new_item' => __( 'Add New KB Article' ),
'edit_item' => __( 'Edit KB Article' ),
'new_item' => __( 'New KB Article' ),
'view_item' => __( 'View KB Article' ),
'search_items' => __( 'Search KB Article' ),
'not_found' => __( 'No kb articles found' ),
'not_found_in_trash' => __( 'No kb articles found in Trash' ),
'parent_item_colon' => ''
);
// Create an array for the $args
$args = array( 'labels' => $labels, /* NOTICE: the $labels variable is used here... */
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )
);
register_post_type( 'kb_articles', $args ); /* Register it and move on */
}
// Custom Taxonomy Code
add_action( 'init', 'build_taxonomies', 0 );
function build_taxonomies() {
register_taxonomy( 'systems', 'kb_articles', array( 'hierarchical' => true, 'label' => 'Systems', 'query_var' => true, 'rewrite' => true ) );
register_taxonomy( 'kb_categories', 'kb_articles', array( 'hierarchical' => true, 'label' => 'KB Categories', 'query_var' => true, 'rewrite' => true ) );
register_taxonomy( 'kb_tags', 'kb_articles', array( 'hierarchical' => false, 'label' => 'KB Tags', 'query_var' => true, 'rewrite' => true ) );
}