wpsc_dump_get_request()WPSCache 1.0

Хуков нет.

Возвращает

null. Ничего (null).

Использование

wpsc_dump_get_request();

Код wpsc_dump_get_request() WPSCache 1.12.0

function wpsc_dump_get_request() {
	static $string;

	if ( isset( $string ) ) {
		return $string;
	}

	if ( function_exists( 'wp_json_encode' ) ) {
		$string = wp_json_encode( $_GET );
	} else {
		$string = json_encode( $_GET );
	}

	return $string;
}