acf_maybe_get_GET()ACF 1.0

Хуков нет.

Возвращает

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

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

acf_maybe_get_GET( $key, $default );
$key **
-
По умолчанию: ''
$default **
-
По умолчанию: null

Код acf_maybe_get_GET() ACF 6.0.4

function acf_maybe_get_GET( $key = '', $default = null ) {

	return isset( $_GET[ $key ] ) ? acf_sanitize_request_args( $_GET[ $key ] ) : $default; // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Checked elsewhere.

}