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
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
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.