akismet_delete_commentmeta_interval, 15
akismet_delete_commentmeta_interval, 15
Appears in: 7.0.3
Hook Type: filter
Displaying hooks found in version: 7.0.3apply_filters('akismet_delete_commentmeta_interval, 15') is found 1 times:
- /wp-content/plugins/akismet/class.akismet.php line 909
public static function delete_old_comments_meta() {
global $wpdb;$interval = apply_filters( ‘akismet_delete_commentmeta_interval’, 15 );
// enforce a minimum of 1 day
$interval = absint( $interval );
if ( $interval < 1 ) { $interval = 1; } [/php]