bp_migrate_new_member_activity_component()

Updates the component field for new_members type.

Description

Source

File: bp-core/bp-core-update.php

724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
function bp_migrate_new_member_activity_component() {
    global $wpdb;
    $bp = buddypress();
 
    // Update the component for the new_member type.
    $wpdb->update(
        // Activity table.
        $bp->members->table_name_last_activity,
        array(
            'component' => $bp->members->id,
        ),
        array(
            'component' => 'xprofile',
            'type'      => 'new_member',
        ),
        // Data sanitization format.
        array(
            '%s',
        ),
        // WHERE sanitization format.
        array(
            '%s',
            '%s'
        )
    );
}

Changelog

Changelog
Version Description
BuddyPress 2.2.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.