wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_current_user_id › WordPress Function

Da
Deprecaton/a
get_current_user_id ( Nessun parametro )
Ritorna:
  • (int) The current user's ID, or 0 if no user is logged in.
Definito a:
Codex:
ChangeLog:
  • MU

Gets the current user's ID.



Sorgenti

function get_current_user_id() {
	if ( ! function_exists( 'wp_get_current_user' ) ) {
		return 0;
	}
	$user = wp_get_current_user();
	return ( isset( $user->ID ) ? (int) $user->ID : 0 );
}