acf_maybe_get_POST()
Хуков нет.
Возвращает
null. Ничего (null).
Использование
acf_maybe_get_POST( $key, $default );
- $key
- .
По умолчанию:'' - $default
- .
По умолчанию:null
Код acf_maybe_get_POST() acf maybe get POST ACF 6.8.8
function acf_maybe_get_POST( $key = '', $default = null ) {
return isset( $_POST[ $key ] ) ? acf_sanitize_request_args( $_POST[ $key ] ) : $default; // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Missing -- Checked elsewhere.
}