bbp_bypass_check_for_flood

bbp_bypass_check_for_flood

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_bypass_check_for_flood') is found 1 times:

  • /includes/common/functions.php line 753
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    */
    function bbp_check_for_flood( $anonymous_data = array(), $author_id = 0 ) {
     
        // Allow for flood check to be skipped
        if ( apply_filters( 'bbp_bypass_check_for_flood', false, $anonymous_data, $author_id ) ) {
            return true;
        }
     
        // Option disabled. No flood checks.
        $throttle_time = get_option( '_bbp_throttle_time' );
        if ( empty( $throttle_time ) || ! bbp_allow_content_throttle() ) {