bp_is_get_request()
Return true|false if this is a GET request.
Description Description
Return Return
(bool)
Source Source
File: bp-core/bp-core-functions.php
function bp_is_get_request() { return (bool) ( 'GET' === strtoupper( $_SERVER['REQUEST_METHOD'] ) ); }
Changelog Changelog
Version | Description |
---|---|
1.9.0 | Introduced. |