wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



set_current_user › WordPress Function

Seit2.0.1
Veraltet3.0.0
set_current_user ( $id, $name = '' )
Parameter: (2)
  • (int|null) $id User ID.
    Erforderlich: Ja
  • (string) $name Optional. The user's username
    Erforderlich: Nein
    Standard: (leer)
Siehe:
Gibt zurück:
  • (WP_User) returns wp_set_current_user()
Definiert in:
Codex:

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.


Quellcode

function set_current_user($id, $name = '') {
	_deprecated_function( __FUNCTION__, '3.0.0', 'wp_set_current_user()' );
	return wp_set_current_user($id, $name);
}