bp_media_import_reset_topic_media()

Reset all media related data in topics

Description

Source

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

2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
function bp_media_import_reset_topic_media() {
    global $wpdb;
 
    $bp_media_table = $wpdb->prefix . 'bp_media';
 
    $medias = get_option( 'bp_media_import_topic_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_reply' );
}

Changelog

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.