bp_force_friendship_to_message( bool $default = false )

Is force friendship to message disabled?

Description

Parameters

$default

(Optional) Fallback value if not found in the database. Default: false.

Default value: false

Return

(bool) True if friendship is forced to message, otherwise false.

Source

File: bp-core/bp-core-options.php

1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
function bp_force_friendship_to_message( $default = false ) {
 
    /**
     * Filters whether or not friendship is forced to message each other.
     *
     * @since BuddyBoss 1.0.0
     *
     * @param bool $value Whether or not friendship is forced to message each other.
     */
    return (bool) apply_filters( 'bp_force_friendship_to_message', (bool) bp_get_option( 'bp-force-friendship-to-message', $default ) );
}

Changelog

Changelog
Version Description
BuddyBoss 1.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.