Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

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.

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
239      global $wpdb;
240
241      $id = (int) $id;
242      $user = new WP_User( $id );
243
244      if ( !$user->exists() )
245           return false;
246
247      // allow for transaction statement
248      do_action('delete_user', $id);
249
250      if ( 'novalue' === $reassign || null === $reassign ) {
251           $post_types_to_delete = array();
252           foreach ( get_post_types( array(), 'objects' ) as $post_type ) {
253                if ( $post_type->delete_with_user ) {
254                     $post_types_to_delete[] = $post_type->name;
255                } elseif ( null === $post_type->delete_with_user && post_type_supports( $post_type->name, 'author' ) ) {
256                     $post_types_to_delete[] = $post_type->name;
257                }