(r6965) * * @param string $default Optional. Default value 'edit' * @return string */ function bbp_get_edit_slug( $default = 'edit' ) { // Filter & return return apply_filters( 'bbp_get_edit_slug', get_option( '_bbp_edit_slug', $default ) ); } /** Legacy ********************************************************************/ /** * Checks if there is a previous BuddyPress Forum configuration * * @since 2.1.0 bbPress (r3790) * * @param string $default Optional. Default empty string * @return string The location of the bb-config.php file, if any */ function bbp_get_config_location( $default = '' ) { // Filter & return return apply_filters( 'bbp_get_config_location', get_option( 'bb-config-location', $default ) ); }