美文网首页
wordpress媒体库增加分类和标签

wordpress媒体库增加分类和标签

作者: lajunta | 来源:发表于2021-03-16 10:07 被阅读0次
function add_categories_tags_to_attachments ( )  {
  register_taxonomy_for_object_type (  'category' ,  'attachment'  ) ;
  register_taxonomy_for_object_type (  'post_tag' ,  'attachment'  ) ;
}
add_action (  'init'  ,  'add_categories_tags_to_attachments'  ) ;

相关文章

网友评论

      本文标题:wordpress媒体库增加分类和标签

      本文链接:https://www.haomeiwen.com/subject/nfircltx.html