<div class="form-field term-description-wrap">
<label for="tag-description"><?php _e( 'Description' ); ?></label>
<textarea name="description" id="tag-description" rows="5" cols="40"></textarea>
<p><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></p>
</div>
<?php
add_action('admin_head', 'hidden_term_description');
function hidden_term_description() {
print '<style>
.term-description-wrap { display:none; }
</style>';
}
?>