bbp_is_ajax()
Is this a bbPress AJAX request?
Description Description
Return Return
(bool) Looking for bbp-ajax
Source Source
File: includes/common/ajax.php
function bbp_is_ajax() { return (bool) ( ( isset( $_GET['bbp-ajax'] ) || isset( $_POST['bbp-ajax'] ) ) && ! empty( $_REQUEST['action'] ) ); }
Changelog Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |