您可以使用{$taxonomy}_edit_form_fields 将html添加到术语编辑表的操作挂钩。在该HTML中,您可以删除描述文本区域并添加tinymce编辑器
add_action("{$taxonomy}_edit_form_fields", \'add_form_fields_example\', 10, 2);
function add_form_fields_example($term, $taxonomy){
?>
<tr valign="top">
<th scope="row">Description</th>
<td>
<?php wp_editor(html_entity_decode($term->description), \'description\', array(\'media_buttons\' => false)); ?>
<script>
jQuery(window).ready(function(){
jQuery(\'label[for=description]\').parent().parent().remove();
});
</script>
</td>
</tr>
<?php
}