可以直接使用插件:
https://WordPress.org/plugins/wp-media-library-categories/

----------------------
或者使用以下代码
在当前主题的 functions.php 中添加 php 代码:

 
function ludou_create_media_category() {
  $args = array(
    'label' => ' 媒体分类',
    'hierarchical' => true,
    'show_admin_column' => true,
    'show_ui'      => true,
    'query_var'    => true,
    'rewrite'      => true,
  );

  register_taxonomy( 'attachment_category', 'attachment', $args );
}

add_action( 'init', 'ludou_create_media_category' );

------------
来源:
http://www.ludou.org/WordPress-applying-categories-tags-and-custom-taxonomies-to-media-attachments2.html

-------------