wordpress如何禁止文章设置标签

2024年10月13日 建站教程

wordpress如何禁止作者在文章中设置标签,下面web建站小编给大家简单介绍一下具体方法!

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

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

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

展开阅读全文
相关内容