Get the current user’s ID

The current user's ID, or 0 if no user is logged in.


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 );
}

Share this

Related Posts

Latest
Previous
Next Post »