一种方法是使用JavaScript添加maxlength
术语描述字段的属性:
function wpse_term_description_attributes() { ?>
<script type="text/javascript">
jQuery(document).ready(function($) {
$( \'.taxonomy-custom_taxonomy_name #description, .taxonomy-custom_taxonomy_name #tag-description\' ).attr( \'maxlength\', \'20\' );
});
</script><?php
}
add_action( \'admin_head\', \'wpse_term_description_attributes\' );
更换
custom_taxonomy_name
并自定义分配给
maxlength
属性(根据需要)。