如何在管理面板中截断自定义分类的描述

时间:2017-02-02 作者:William Ode

我在自定义分类法中有一个术语,描述很长。admin表接合以不截断字段。我该怎么做?

非常感谢。

1 个回复
SO网友:Dave Romsey

一种方法是使用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 属性(根据需要)。