Wordpress 媒体中的批量编辑选项

Wordpress 媒体中的批量编辑选项,wordpress,Wordpress,通过上述方式,我们也可以为媒体文件或附件授予分类权限,但对于帖子,WordPress会为帖子打包一个默认的批量编辑→ 我们是否有可能将此信息传递给“媒体”帖子类型 add_action('init', 'theme_register_tax'); function theme_register_tax() { register_taxonomy_for_object_type('category', 'attachment'); add_post_type_support('atta

通过上述方式,我们也可以为媒体文件或附件授予分类权限,但对于帖子,WordPress会为帖子打包一个默认的批量编辑→

我们是否有可能将此信息传递给
“媒体”
帖子类型

add_action('init', 'theme_register_tax');
function theme_register_tax() {
   register_taxonomy_for_object_type('category', 'attachment');
   add_post_type_support('attachment', 'category');
}