bbp_get_default_user_options

bbp_get_default_user_options

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_default_user_options') is found 1 times:

  • /includes/users/options.php line 23
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    */
    function bbp_get_default_user_options() {
     
        // Filter & return
        return (array) apply_filters( 'bbp_get_default_user_options', array(
            '_bbp_last_posted' => '0', // For checking flooding
            '_bbp_topic_count' => '0', // Total topics per site
            '_bbp_reply_count' => '0'  // Total replies per site
        ) );
    }