Pass $reassign parameter to 'delete_user' and 'deleted_user' actions.
props genkisan. fixes #23057. Built from https://develop.svn.wordpress.org/trunk@27462 git-svn-id: http://core.svn.wordpress.org/trunk@27307 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
330a752417
commit
9c6504120f
|
@ -282,9 +282,10 @@ function wp_delete_user( $id, $reassign = 'novalue' ) {
|
||||||
*
|
*
|
||||||
* @since 2.0.0
|
* @since 2.0.0
|
||||||
*
|
*
|
||||||
* @param int $id User ID.
|
* @param int $id ID of the user to delete.
|
||||||
|
* @param int|string $reassign ID of the user to reassign posts and links to. Default 'novalue'.
|
||||||
*/
|
*/
|
||||||
do_action( 'delete_user', $id );
|
do_action( 'delete_user', $id, $reassign );
|
||||||
|
|
||||||
if ( 'novalue' === $reassign || null === $reassign ) {
|
if ( 'novalue' === $reassign || null === $reassign ) {
|
||||||
$post_types_to_delete = array();
|
$post_types_to_delete = array();
|
||||||
|
@ -353,9 +354,10 @@ function wp_delete_user( $id, $reassign = 'novalue' ) {
|
||||||
*
|
*
|
||||||
* @since 2.9.0
|
* @since 2.9.0
|
||||||
*
|
*
|
||||||
* @param int $id ID of the deleted user.
|
* @param int $id ID of the deleted user.
|
||||||
|
* @param int|string $reassign ID of the user to reassign posts and links to. Default 'novalue'.
|
||||||
*/
|
*/
|
||||||
do_action( 'deleted_user', $id );
|
do_action( 'deleted_user', $id, $reassign );
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue