bp_is_activity_edit_enabled( bool $default = false )

Check whether Activity edit is enabled.

Description

Parameters

$default

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

Default value: false

Return

(bool) True if Edit is enabled, otherwise false.

Source

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

937
938
939
940
941
942
943
944
945
946
947
function bp_is_activity_edit_enabled( $default = false ) {
 
    /**
     * Filters whether or not Activity edit is enabled.
     *
     * @since BuddyBoss 1.5.0
     *
     * @param bool $value Whether or not Activity edit is enabled.
     */
    return (bool) apply_filters( 'bp_is_activity_edit_enabled', (bool) bp_get_option( '_bp_enable_activity_edit', $default ) );
}

Changelog

Changelog
Version Description
BuddyBoss 1.5.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.