bbp_get_config_location( string $default = '' )

Checks if there is a previous BuddyPress Forum configuration


Description Description


Parameters Parameters

$default

(Optional) Default empty string

Default value: ''


Top ↑

Return Return

(string) The location of the bb-config.php file, if any


Top ↑

Source Source

File: includes/core/options.php

function bbp_get_config_location( $default = '' ) {

	// Filter & return
	return apply_filters( 'bbp_get_config_location', get_option( 'bb-config-location', $default ) );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.1.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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