check_comment
check_comment ( $author, $email, $url, $comment, $user_ip, $user_agent, $comment_type )
Parameters:- (string) author Comment author name.
- (string) email Comment author email.
- (string) url Comment author URL.
- (string) comment Content of the comment.
- (string) user_ip Comment author IP address.
- (string) user_agent Comment author User-Agent.
- (string) comment_type Comment type, either user-submitted comment, trackback, or pingback.
Returns:- (bool) If all checks pass, true, otherwise false.
Defined at: - Introduced in WordPress: 1.2.0
- Deprecated in WordPress: —
Description
Checks whether a comment passes internal checks to be allowed to add.If manual comment moderation is set in the administration, then all checks,
regardless of their type and substance, will fail and the function will
return false.
If the number of links exceeds the amount in the administration, then the
check fails. If any of the parameter contents contain any disallowed words,
then the check fails.
If the comment author was approved before, then the comment is automatically
approved.
If all checks pass, the function will return true.