bp_is_user_inactive( int $user_id )

Check whether user is not active.

Description

Parameters

$user_id

(int) (Required) The user ID to check.

Return

(bool) True if inactive, otherwise false.

Source

File: bp-members/bp-members-functions.php

function bp_is_user_inactive( $user_id = 0 ) {

	// Default to current user.
	if ( empty( $user_id ) && is_user_logged_in() ) {
		$user_id = bp_loggedin_user_id();
	}

	// No user to check.
	if ( empty( $user_id ) ) {
		return false;
	}

	// Return the inverse of active.
	return !bp_is_user_active( $user_id );
}

Changelog

Changelog
Version Description
BuddyPress 1.6.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.