Disable the default “Category” and “Tag” taxonomies completely.
function yourtheme_remove_and_deregister() {
register_taxonomy('category', array());
register_taxonomy('post_tag', array());
}
add_action('init', 'yourtheme_remove_and_deregister');