You appear to be a bot. Output may be restricted
Description
To disable the Akismet comment nonce, add a filter for the 'akismet_comment_nonce' tag and return any string value that is not 'true' or '' (empty string).
Don't return boolean false, because that implies that the 'akismet_comment_nonce' option has not been set and that Akismet should just choose the default behavior for that situation.
Usage
Akismet::is_test_mode();
Parameters
Returns
void
Source
File name: akismet/class.akismet.php
Lines:
1 to 3 of 3
public static function is_test_mode() { return defined('AKISMET_TEST_MODE') && AKISMET_TEST_MODE; }