bbp_is_theme_compat_active()

Gets true/false if page is currently inside theme compatibility


Description Description


Return Return

(bool)


Top ↑

Source Source

File: includes/core/theme-compat.php

function bbp_is_theme_compat_active() {
	$bbp = bbpress();

	if ( empty( $bbp->theme_compat->active ) ) {
		return false;
	}

	return $bbp->theme_compat->active;
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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