bp_media_import_reset_forum_media()
Reset all media related data in forums
Description
Source
File: bp-media/bp-media-functions.php
1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 | function bp_media_import_reset_forum_media() { global $wpdb ; $bp_media_table = $wpdb ->prefix . 'bp_media' ; $medias = get_option( 'bp_media_import_forum_media_ids' , array () ); if ( ! empty ( $medias ) ) { $medias = implode( ',' , $medias ); $wpdb ->query( "DELETE FROM {$bp_media_table} WHERE id IN ({$medias})" ); } update_option( 'bp_media_import_status' , 'reset_topic' ); } |
Changelog
Version | Description |
---|---|
BuddyBoss 1.0.10 | 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.