bbp_get_request()
The main action used for handling theme-side GET requests
Description Description
Source Source
File: includes/core/sub-actions.php
function bbp_get_request() { // Bail if not a POST action if ( ! bbp_is_get_request() ) { return; } // Bail if no action if ( empty( $_GET['action'] ) ) { return; } // Sanitize the GET action $action = sanitize_key( $_GET['action'] ); // Bail if action was totally invalid if ( empty( $action ) ) { return; } // This dynamic action is probably the one you want to use. It narrows down // the scope of the 'action' without needing to check it in your function. do_action( 'bbp_get_request_' . $action ); // Use this static action if you don't mind checking the 'action' yourself. do_action( 'bbp_get_request', $action ); }
Changelog Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |