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