set_current_user

Definition:
function set_current_user($id, $name = '') {}

Changes the current user by ID or name.
Set $id to null and specify a name if you do not know a user’s ID.

Parameters

  • int|null $id: User ID.
  • string $name: Optional. The user’s username

Source code

function set_current_user($id, $name = '') {

	_deprecated_function( __FUNCTION__, '3.0', 'wp_set_current_user()' );

	return wp_set_current_user($id, $name);

}

2843

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: