bbp_is_reply_pending

bbp_is_reply_pending

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_is_reply_pending') is found 1 times:

  • /includes/replies/template.php line 945
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
        $status       = bbp_get_pending_status_id();
        $reply_status = bbp_get_reply_status( $reply_id ) === $status;
     
        // Filter & return
        return (bool) apply_filters( 'bbp_is_reply_pending', (bool) $reply_status, $reply_id );
    }
     
    /**
     * Is the reply private?
     *
     * @since 2.6.0 bbPress (r5507)