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
325      /**
326       * Fires immediately before a user is deleted from the database.
327       *
328       * @since 2.0.0
329       *
330       * @param int      $id       ID of the user to delete.
331       * @param int|null $reassign ID of the user to reassign posts and links to.
332       *                           Default null, for no reassignment.
333       */
334      do_action( 'delete_user', $id, $reassign );
335
336      if ( null === $reassign ) {
337           $post_types_to_delete = array();
338           foreach ( get_post_types( array(), 'objects' ) as $post_type ) {
339                if ( $post_type->delete_with_user ) {
340                     $post_types_to_delete[] = $post_type->name;
341                } elseif ( null === $post_type->delete_with_user && post_type_supports( $post_type->name, 'author' ) ) {
342                     $post_types_to_delete[] = $post_type->name;
343                }