bbp_setup_user_option_filters

bbp_setup_user_option_filters

Hook Type: action

See hook in core

Displaying hooks found in version: bbpress.2.6.9

do_action('bbp_setup_user_option_filters') is found 1 times:

  • /includes/users/options.php line 93
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
            add_filter( 'get_user_option_' . $key, 'bbp_filter_get_user_option', 10, 3 );
        }
     
        // Allow previously activated plugins to append their own options.
        do_action( 'bbp_setup_user_option_filters' );
    }
     
    /**
     * Filter default options and allow them to be overloaded from inside the
     * $bbp->user_options array.
     *