apply_filters( 'check_is_user_spammed', bool $spammed, WP_User $user )
- Since
- 3.7.0
Filters whether the user has been marked as a spammer.
Parameters
$spammedbool- Whether the user is considered a spammer.
$userWP_User- User to check against.
Fired at · 1
wp-includes/user.php:565wp_authenticate_spam_check()
Source
* * @since 3.7.0 * * @param bool $spammed Whether the user is considered a spammer. * @param WP_User $user User to check against. */ $spammed = apply_filters( 'check_is_user_spammed', is_user_spammy( $user ), $user ); if ( $spammed ) { return new WP_Error( 'spammer_account', __( '<strong>Error:</strong> Your account has been marked as a spammer.' ) ); } } return $user;History
Introduced in 3.7.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.8.8 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.