akismet_delete_commentmeta_interval

akismet_delete_commentmeta_interval

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.4.3

apply_filters('akismet_delete_commentmeta_interval') is found 1 times:

  • /wp-content/plugins/akismet/class.akismet.php line 541

    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]