Skip to content

Instantly share code, notes, and snippets.

@nash-ye
Last active July 22, 2019 21:00
Show Gist options
  • Save nash-ye/59c1faf89aa6c4a0d0e5eb952c26047e to your computer and use it in GitHub Desktop.
Save nash-ye/59c1faf89aa6c4a0d0e5eb952c26047e to your computer and use it in GitHub Desktop.
Disallow authors in WordPress from assigning post tags.
<?php
add_action('registered_taxonomy', function($taxonomy) {
global $wp_taxonomies;
if ('post_tag' === $taxonomy) {
$wp_taxonomies[$taxonomy]->cap->assign_terms = 'edit_others_posts';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment