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

February 12, 2011 


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