wpsc_is_get_query()WPSCache 1.0

No Hooks.

Return

null. Nothing (null).

Usage

wpsc_is_get_query();

wpsc_is_get_query() code WPSCache 1.12.4

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;
}