bp_activity_akismet_delete_old_metadata()
Delete old spam activity meta data.
Description
This is done as a clean-up mechanism, as _bp_akismet_submission meta can grow to be quite large.
Source
File: bp-activity/bp-activity-akismet.php
function bp_activity_akismet_delete_old_metadata() {
global $wpdb;
$bp = buddypress();
/**
* Filters the threshold for how many days old Akismet metadata needs to be before being automatically deleted.
*
* @since BuddyPress 1.6.0
*
* @param integer 15 How many days old metadata needs to be.
*/
$interval = apply_filters( 'bp_activity_akismet_delete_meta_interval', 15 );
// Enforce a minimum of 1 day.
$interval = max( 1, absint( $interval ) );
// _bp_akismet_submission meta values are large, so expire them after $interval days regardless of the activity status
$sql = $wpdb->prepare( "SELECT a.id FROM {$bp->activity->table_name} a LEFT JOIN {$bp->activity->table_name_meta} m ON a.id = m.activity_id WHERE m.meta_key = %s AND DATE_SUB(%s, INTERVAL {$interval} DAY) > a.date_recorded LIMIT 10000", '_bp_akismet_submission', current_time( 'mysql', 1 ) );
$activity_ids = $wpdb->get_col( $sql );
if ( ! empty( $activity_ids ) ) {
foreach ( $activity_ids as $activity_id )
bp_activity_delete_meta( $activity_id, '_bp_akismet_submission' );
}
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 1.6.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.