acf_maybe_get_GET()
Хуков нет.
Возвращает
null. Ничего (null).
Использование
acf_maybe_get_GET( $key, $default );
- $key
- .
По умолчанию:'' - $default
- .
По умолчанию:null
Код acf_maybe_get_GET() acf maybe get GET ACF 6.4.2
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.
}