You appear to be a bot. Output may be restricted
Description
Usage
Akismet::deactivate_key( $key );
Parameters
- $key
- ( mixed ) required –
Returns
void
Source
File name: akismet/class.akismet.php
Lines:
1 to 8 of 8
public static function deactivate_key( $key ) { $response = self::http_post( Akismet::build_query( array( 'key' => $key, 'blog' => get_option( 'home' ) ) ), 'deactivate' ); if ( $response[1] != 'deactivated' ) return 'failed'; return $response[1]; }