wpsc_is_get_query()
No Hooks.
Returns
null. Nothing (null).
Usage
wpsc_is_get_query();
wpsc_is_get_query() wpsc is get query code WPSCache 3.1.0
function wpsc_is_get_query() {
static $is_get_query = null;
if ( null === $is_get_query ) {
$request_uri = wpsc_parse_partial_url( $_SERVER['REQUEST_URI'] );
$is_get_query = $request_uri && ! empty( $request_uri['query'] );
}
return $is_get_query;
}