Warning: This function has been deprecated.

bp_core_admin_maybe_remove_from_update_core()

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


Description Description

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


Source Source

File: bp-core/deprecated/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' );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.8.0 This function has been deprecated.
2.7.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.