ForbodingAngel

Untitled

Mar 31st, 2014
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. /* We want to disallow the user from editing their own profiles */
  2. add_action( 'admin_init', 'stop_access_profile' );
  3. function stop_access_profile() {
  4. remove_menu_page( 'profile.php' );
  5. remove_submenu_page( 'users.php', 'profile.php' );
  6. if(IS_PROFILE_PAGE === true) {
  7. wp_die( 'You are not permitted to change your own profile information. Please contact a member of HR to have your profile information changed.' );
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment