Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DarioBF/523646d6566817a4c6d9771fcfb5c315 to your computer and use it in GitHub Desktop.
Save DarioBF/523646d6566817a4c6d9771fcfb5c315 to your computer and use it in GitHub Desktop.
add_action( 'pre_insert_term', function ( $term, $taxonomy )
{
return ( 'tutaxonomia' === $taxonomy && !current_user_can( 'manage_options' ) )
? new WP_Error( 'term_addition_blocked', __( 'No puedes añadir términos a esta taxonomía.' ) )
: $term;
}, 0, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment