wppaste
WordPress

wp_ajax_add_user( string $action )

Since
3.1.0
Source
wp-admin/includes/ajax-actions.php:1768
Handles adding a user via AJAX.

Parameters

$actionstring
Action to perform.

Uses · 9

Source

function wp_ajax_add_user( $action ) {	if ( empty( $action ) ) {		$action = 'add-user';	} 	check_ajax_referer( $action ); 	if ( ! current_user_can( 'create_users' ) ) {		wp_die( -1 );	} 	$user_id = edit_user(); 	if ( ! $user_id ) {		wp_die( 0 );	} elseif ( is_wp_error( $user_id ) ) {		$response = new WP_Ajax_Response(			array(				'what' => 'user',				'id'   => $user_id,			)		);		$response->send();	} 	$user_object   = get_userdata( $user_id );	$wp_list_table = _get_list_table( 'WP_Users_List_Table' ); 	$role = current( $user_object->roles ); 	$response = new WP_Ajax_Response(		array(			'what'         => 'user',			'id'           => $user_id,			'data'         => $wp_list_table->single_row( $user_object, '', $role ),			'supplemental' => array(				'show-link' => sprintf(					/* translators: %s: The new user. */					__( 'User %s added' ),					'<a href="#user-' . $user_id . '">' . $user_object->user_login . '</a>'				),				'role'      => $role,			),		)	);	$response->send();}

History

Introduced in 3.1.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-admin/includes/ajax-actions.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.