wordpress如何禁止作者给文章设置标签

2025年01月27日 建站教程

wordpress如何除管理员和编辑人员之外禁止其它作者给文章设置标签,下面web建站小编给大家详细介绍一下具体实现方法!

在当前主题的functions.php文件中新增以下代码:

function disallow_tags_for_author( $taxonomy ) {
  global $wp_taxonomies;
  if ('post_tag' === $taxonomy) {
    $wp_taxonomies[$taxonomy]->cap->assign_terms = 'edit_others_posts';
  }
}
add_action('registered_taxonomy', 'disallow_tags_for_author');

本文链接:http://so.lmcjl.com/news/22158/

展开阅读全文
相关内容