You appear to be a bot. Output may be restricted
Description
Some commentmeta isn't useful in an export file. Suppress it (when supported).
Usage
$bool = Akismet_Admin::exclude_commentmeta_from_export( $exclude, $key, $meta );
Parameters
- $exclude
- ( bool ) required –
- $key
- ( string ) required – The meta key
- $meta
- ( object ) required – The meta object
Returns
bool Whether to exclude this meta entry from the export.
Source
File name: akismet/class.akismet-admin.php
Lines:
1 to 7 of 7
public static function exclude_commentmeta_from_export( $exclude, $key, $meta ) { if ( in_array( $key, array( 'akismet_as_submitted', 'akismet_rechecking', 'akismet_delayed_moderation_email' ) ) ) { return true; } return $exclude; }