bbp_is_user_inactive( int $user_id )
Checks if user is not active.
Description Description
Parameters Parameters
- $user_id
-
(Required) The user ID to check. Defaults to current user ID
Return Return
(bool) True if inactive, false if active
Source Source
File: includes/users/capabilities.php
function bbp_is_user_inactive( $user_id = 0 ) { return ! bbp_is_user_active( $user_id ); }
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |