bp_media_delete_activity_gif( array $activities )

Delete media gif when related activity is deleted.

Description

Parameters

$activities

(Required) Array of activities.

Source

File: bp-media/bp-media-filters.php

480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
function bp_media_delete_activity_gif( $activities ) {
    if ( ! empty( $activities ) ) {
        foreach ( $activities as $activity ) {
            $activity_id  = $activity->id;
            $activity_gif = bp_activity_get_meta( $activity_id, '_gif_data', true );
 
            if ( ! empty( $activity_gif ) ) {
                if ( ! empty( $activity_gif['still'] ) ) {
                    wp_delete_attachment( (int) $activity_gif['still'], true );
                }
 
                if ( ! empty( $activity_gif['mp4'] ) ) {
                    wp_delete_attachment( (int) $activity_gif['mp4'], true );
                }
            }
        }
    }
}

Changelog

Changelog
Version Description
BuddyBoss 1.4.9 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.