Warning: This function has been deprecated.

bp_dtheme_page_on_front_update( string $oldvalue,  $newvalue )

In BuddyPress 1.2.x, this function hijacked the saving of page on front setting to save the activity stream setting.


Description Description

As of 1.5.x, it is no longer required.


Parameters Parameters

$oldvalue

(Required) New value of get_option( 'page_on_front' )


Top ↑

Return Return

(false|string)


Top ↑

Source Source

File: bp-core/deprecated/1.5.php

	function bp_dtheme_page_on_front_update( $oldvalue, $newvalue ) {
		_deprecated_function( __FUNCTION__, '1.5', "No longer required." );
		if ( !is_admin() || !bp_current_user_can( 'bp_moderate' ) )
			return false;

		return $oldvalue;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.5.0 This function has been deprecated.
1.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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