You appear to be a bot. Output may be restricted
Description
Add the akismet option to the Jetpack options management whitelist.
Usage
$array = Akismet::add_to_jetpack_options_whitelist( $options );
Parameters
- $options
- ( array ) required – The list of whitelisted option names.
Returns
array The updated whitelist
Source
File name: akismet/class.akismet.php
Lines:
1 to 4 of 4
public static function add_to_jetpack_options_whitelist( $options ) { $options[] = 'wordpress_api_key'; return $options; }