elmanisero

rimuovere permessi per cambiare profilo

Feb 22nd, 2013
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1.  
  2. <?php
  3. add_action( 'admin_init', 'stop_access_profile' );
  4. function stop_access_profile() {
  5. remove_menu_page( 'profile.php' );
  6. remove_submenu_page( 'users.php', 'profile.php' );
  7. if(IS_PROFILE_PAGE === true) {
  8. wp_die( 'Non hai il permesso di cambiare le informazioni del tuo profilo. Contattaci per eventuali cambi che vuoi fare.' );
  9. }
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment