Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. add_action( 'pre_insert_term', function ( $term, $taxonomy )
  2. {
  3. return ( 'tutaxonomia' === $taxonomy && !current_user_can( 'manage_options' ) )
  4. ? new WP_Error( 'term_addition_blocked', __( 'No puedes añadir términos a esta taxonomía.' ) )
  5. : $term;
  6. }, 0, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement