Всем привет, создал свой тип постов 
function wptp_create_faq_post_type() {
    // faq custom post type
    register_post_type( 'enterprises', array(
        'labels' => array(
        'name' => 'Предприятия',
        'singular_name' => 'Предприятие'
    ),
        'has_archive' => true,
        'public' => true,
        'hierarchical' => false,
		'taxonomies' => array('category'),
        'supports' => array( 'title', 'custom-fields', 'thumbnail','page-attributes' ,'title', 'editor', 'excerpt' ),
        'exclude_from_search' => true,
        'capability_type' => 'post',
        'rewrite' => array ('slug' => 'enterprises' ),
        )
    );
}
add_action( 'init', 'wptp_create_faq_post_type' );
И создал новую рубрику для него enterpises. Шаблон рубрики category-enterpises.php, но он не отрабатывает, отрабатывает сразу archive.php, как можно это подправить, и в чем может быть ошибка?