Last active
June 7, 2019 16:30
-
-
Save TriForceX/bbfc97329a56e8999ef8376e88e50525 to your computer and use it in GitHub Desktop.
[Wordpress] Deny user add/edit perms on Taxonomies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Deny user add/edit perms on Taxonomies | |
function prevent_terms($term, $taxonomy) | |
{ | |
if('taxonomy_slug' === $taxonomy && current_user_can('role_slug')) | |
{ | |
return new WP_Error('term_addition_blocked', __('You cannot add terms to this taxonomy')); | |
} | |
return $term; | |
} | |
add_action('pre_insert_term', 'prevent_terms', 1, 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment