WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
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.
Line | Code |
---|---|
234 | * @return bool True when finished. |
235 | */ |
236 | function wp_delete_user( $id, $reassign = 'novalue' ) { |
237 | global $wpdb; |
238 |
|
239 | $id = (int) $id; |
240 | $user = new WP_User( $id ); |
241 |
|
242 | // allow for transaction statement |
243 | do_action('delete_user', $id); |
244 |
|
245 | if ( 'novalue' === $reassign || null === $reassign ) { |
246 | $post_types_to_delete = array(); |
247 | foreach ( get_post_types( array(), 'objects' ) as $post_type ) { |
248 | if ( $post_type->delete_with_user ) { |
249 | $post_types_to_delete[] = $post_type->name; |
250 | } elseif ( null === $post_type->delete_with_user && post_type_supports( $post_type->name, 'author' ) ) { |
251 | $post_types_to_delete[] = $post_type->name; |
252 | } |