Skip to content

Instantly share code, notes, and snippets.

@TriForceX
Last active June 7, 2019 16:30
Show Gist options
  • Save TriForceX/bbfc97329a56e8999ef8376e88e50525 to your computer and use it in GitHub Desktop.
Save TriForceX/bbfc97329a56e8999ef8376e88e50525 to your computer and use it in GitHub Desktop.
[Wordpress] Deny user add/edit perms on Taxonomies
<?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