wppaste
WordPress

do_action_deprecated( 'wp_blacklist_check', string $author, string $email, string $url, string $comment, string $user_ip, string $user_agent )

Since
1.5.0
Fires before the comment is tested for disallowed characters or words.

Compatibility

Deprecated in WordPress 5.5.0. Use {@see 'wp_check_comment_disallowed_list'} instead.

WordPress
since 1.5.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

$authorstring
Comment author.
$emailstring
Comment author's email.
$urlstring
Comment author's URL.
$commentstring
Comment content.
$user_ipstring
Comment author's IP address.
$user_agentstring
Comment author's browser user agent.

Where this hook fires · 1

  • wp-includes/comment.php:1339wp_check_comment_disallowed_list()

Source code

	 * @param string $email      Comment author's email.	 * @param string $url        Comment author's URL.	 * @param string $comment    Comment content.	 * @param string $user_ip    Comment author's IP address.	 * @param string $user_agent Comment author's browser user agent.	 */	do_action_deprecated(		'wp_blacklist_check',		array( $author, $email, $url, $comment, $user_ip, $user_agent ),		'5.5.0',		'wp_check_comment_disallowed_list',		__( 'Please consider writing more inclusive code.' )	);

Changelog

Introduced in 1.5.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

5.5.0
Deprecated. Use 'wp_check_comment_disallowed_list' instead.from the docblock
1.5.0
Introduced.from the docblock

About this page

Parsed data
Generated from the wordpress-develop 6.7.7 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.