Welcome, visitor! Log in
 

Source View: delete_user

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

  • Action hooks look like this: do_action( "hook_name" )
  • Filter hooks look like this: apply_filters( "hook_name", "what_to_filter" ).

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
263           // Clean links
264           $wpdb->query("DELETE FROM $wpdb->links WHERE link_owner = $id");
265      } else {
266           $reassign = (int) $reassign;
267           $wpdb->query("UPDATE $wpdb->posts SET post_author = {$reassign} WHERE post_author = {$id}");
268           $wpdb->query("UPDATE $wpdb->links SET link_owner = {$reassign} WHERE link_owner = {$id}");
269      }
270
271      // FINALLY, delete user
272      do_action('delete_user', $id);
273
274      $wpdb->query("DELETE FROM $wpdb->users WHERE ID = $id");
275      $wpdb->query("DELETE FROM $wpdb->usermeta WHERE user_id = '$id'");
276
277      wp_cache_delete($id, 'users');
278      wp_cache_delete($user->user_login, 'userlogins');
279      wp_cache_delete($user->user_email, 'useremail');
280
281      return true;