您可以通过post_tag_edit_form
挂钩:
/**
* Hide the term description in the post_tag edit form
*/
add_action( "post_tag_edit_form", function( $tag, $taxonomy )
{
?><style>.term-description-wrap{display:none;}</style><?php
}, 10, 2 );
在这里,您还可以针对单个标记。
如果其他分类法需要类似的内容,可以使用{taxonomy_slug}_edit_form
钩
更新看起来问题是关于列表表,而不是编辑表单。
我深入研究了WorPress中的列表表,找到了从中的术语表中删除描述列的方法edit-tags.php
/**
* Remove the \'description\' column from the table in \'edit-tags.php\'
* but only for the \'post_tag\' taxonomy
*/
add_filter(\'manage_edit-post_tag_columns\', function ( $columns )
{
if( isset( $columns[\'description\'] ) )
unset( $columns[\'description\'] );
return $columns;
} );
如果要对其他分类法执行相同的操作,请使用
manage_edit-{taxonomy_slug}_columns
滤器