_bbp_akismet_delete_spam_meta_count

_bbp_akismet_delete_spam_meta_count

Hook Type: action

See hook in core

Displaying hooks found in version: bbpress.2.6.9

do_action('_bbp_akismet_delete_spam_meta_count') is found 2 times:

  • /includes/extend/akismet.php line 1155
    1151
    1152
    1153
    1154
    1155
    1156
    1157
    1158
    1159
    1160
             *
             * @param int   Count of topic/reply IDs
             * @param array Array of topic/reply IDs
             */
            do_action( '_bbp_akismet_delete_spam_meta_count', count( $spam_ids ), $spam_ids );
        }
     
        // Maybe optimize
        $this->maybe_optimize_postmeta();
    }
  • /includes/extend/akismet.php line 1236
    1232
    1233
    1234
    1235
    1236
    1237
    1238
    1239
    1240
    1241
    1242
         *
         * @param int   Count of spam meta IDs
         * @param array Array of spam meta IDs
         */
        do_action( '_bbp_akismet_delete_spam_meta_count', count( $spam_meta_deleted ), $spam_meta_deleted );
     
        // Break if getting close to max_execution_time.
        if ( ( microtime( true ) - $start_time ) > $max_exec_time ) {
            break;
        }
    }