纯代码给WordPress媒体库文件添加分类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
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' );
原文链接:https://xiaohost.com/3640.html,转载请注明出处。
0

评论0

请先