is_user_spammy() WordPress Function
This function will take a user's ID as input and return TRUE if the user is considered spammy.
is_user_spammy( string|WP_User $user = null ) #
Determines whether a user is marked as a spammer, based on user login.
Parameters
Return
(bool)
Source
File: wp-includes/ms-functions.php
function is_user_spammy( $user = null ) {
if ( ! ( $user instanceof WP_User ) ) {
if ( $user ) {
$user = get_user_by( 'login', $user );
} else {
$user = wp_get_current_user();
}
}
return $user && isset( $user->spam ) && 1 == $user->spam;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| MU (3.0.0) | Introduced. |