wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



is_user_spammy › WordPress Function

Seit
Veraltetn/v
is_user_spammy ( $user = null )
Parameter:
  • (string|WP_User) $user Optional. Defaults to current user. WP_User object, or user login name as a string.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (bool)
Definiert in:
Codex:
Changelog:
  • MU

Determines whether a user is marked as a spammer, based on user login.



Quellcode

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