This function has been deprecated. BuddyPress 2.8.0 instead.

bp_core_admin_maybe_remove_from_update_core()

On the “Dashboard > Updates” page, remove BuddyPress from plugins list if PHP < 5.3.

Description

Originally hooked to ‘load-update-core.php’.

Source

File: bp-core/deprecated/buddypress/2.8.php

function bp_core_admin_maybe_remove_from_update_core() {
	if ( bp_core_admin_is_running_php53_or_greater() ) {
		return;
	}

	// Add filter to remove BP from the update plugins list.
	add_filter( 'site_transient_update_plugins', 'bp_core_admin_remove_buddypress_from_update_transient' );
}

Changelog

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