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


Top ↑

Return Return

(bool) True if inactive, false if active


Top ↑

Source Source

File: includes/users/capabilities.php

function bbp_is_user_inactive( $user_id = 0 ) {
	return ! bbp_is_user_active( $user_id );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.