bbp_verify_nonce_request_url

bbp_verify_nonce_request_url

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_verify_nonce_request_url') is found 1 times:

  • /includes/common/functions.php line 2236
    2232
    2233
    2234
    2235
    2236
    2237
    2238
    2239
    2240
    2241
    * @since 2.2.0 bbPress (r4361)
     *
     * @param string $requested_url The requested URL.
     */
    $matched_url = apply_filters( 'bbp_verify_nonce_request_url', $requested_url );
     
    // Check the nonce
    $result = isset( $_REQUEST[ $query_arg ] )
        ? wp_verify_nonce( $_REQUEST[ $query_arg ], $action )
        : false;