Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- add_action( 'admin_init', 'stop_access_profile' );
- function stop_access_profile() {
- remove_menu_page( 'profile.php' );
- remove_submenu_page( 'users.php', 'profile.php' );
- if(IS_PROFILE_PAGE === true) {
- wp_die( 'Non hai il permesso di cambiare le informazioni del tuo profilo. Contattaci per eventuali cambi che vuoi fare.' );
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment