Created
June 13, 2019 19:50
-
-
Save DarioBF/523646d6566817a4c6d9771fcfb5c315 to your computer and use it in GitHub Desktop.
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
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