akismet_batch_delete_count

akismet_batch_delete_count

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('akismet_batch_delete_count') is found 3 times:

  • /wp-content/plugins/akismet/class.akismet.php line 581
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    foreach ( $comment_ids as $comment_id ) {
        $comments[ $comment_id ] = get_comment( $comment_id );
     
        do_action( 'delete_comment', $comment_id, $comments[ $comment_id ] );
        do_action( 'akismet_batch_delete_count', __FUNCTION__ );
    }
     
    // Prepared as strings since comment_id is an unsigned BIGINT, and using %d will constrain the value to the maximum signed BIGINT.
    $format_string = implode( ', ', array_fill( 0, is_countable( $comment_ids ) ? count( $comment_ids ) : 0, '%s' ) );
     
    $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->comments} WHERE comment_id IN ( " . $format_string . ' )', $comment_ids ) );
  • /wp-content/plugins/akismet/class.akismet.php line 626
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
        $wpdb->queries = array();
     
        foreach ( $comment_ids as $comment_id ) {
            delete_comment_meta( $comment_id, 'akismet_as_submitted' );
            do_action( 'akismet_batch_delete_count', __FUNCTION__ );
        }
     
        do_action( 'akismet_delete_commentmeta_batch', is_countable( $comment_ids ) ? count( $comment_ids ) : 0 );
    }
     
    if ( apply_filters( 'akismet_optimize_table', ( mt_rand( 1, 5000 ) == 11 ), $wpdb->commentmeta ) ) { // lucky number
  • /wp-content/plugins/akismet/class.akismet.php line 657
    654
    655
    656
    657
    658
    659
    660
    661
    662
    foreach ( $commentmeta_results as $commentmeta ) {
        if ( 'akismet_' == substr( $commentmeta->meta_key, 0, 8 ) ) {
            delete_comment_meta( $commentmeta->comment_id, $commentmeta->meta_key );
            do_action( 'akismet_batch_delete_count', __FUNCTION__ );
            ++$commentmeta_deleted;
        }
     
        $last_meta_id = $commentmeta->meta_id;
    }