2025年01月27日 建站教程
wordpress如何除管理员和编辑人员之外禁止其它作者给文章设置标签,下面web建站小编给大家详细介绍一下具体实现方法!
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/