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
235  * @return bool True when finished.
236  */
237 function wp_delete_user( $id, $reassign = 'novalue' ) {
238      global $wpdb;
239
240      $id = (int) $id;
241      $user = new WP_User( $id );
242
243      // allow for transaction statement
244      do_action('delete_user', $id);
245
246      if ( 'novalue' === $reassign || null === $reassign ) {
247           $post_types_to_delete = array();
248           foreach ( get_post_types( array(), 'objects' ) as $post_type ) {
249                if ( $post_type->delete_with_user ) {
250                     $post_types_to_delete[] = $post_type->name;
251                } elseif ( null === $post_type->delete_with_user && post_type_supports( $post_type->name, 'author' ) ) {
252                     $post_types_to_delete[] = $post_type->name;
253                }