wp_is_collaboration_enabled(): bool

In this article

Determines whether real-time collaboration is enabled.

Description

If the WP_ALLOW_COLLABORATION constant is false, collaboration is always disabled regardless of the database option.
Otherwise, falls back to the ‘wp_collaboration_enabled’ option.

Return

bool Whether real-time collaboration is enabled.

Source

function wp_is_collaboration_enabled() {
	return (
		wp_is_collaboration_allowed() &&
		(bool) get_option( 'wp_collaboration_enabled' )
	);
}

Changelog

VersionDescription
7.0.0Introduced.

User Contributed Notes

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