bbp_include_root_slug( bool $default = 1 )

Are we including the root slug in front of forum pages?


Description Description


Parameters Parameters

$default

(Optional) Default value true

Default value: 1


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: includes/core/options.php

function bbp_include_root_slug( $default = 1 ) {

	// Filter & return
	return (bool) apply_filters( 'bbp_include_root_slug', (bool) get_option( '_bbp_include_root', $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.