ACF_Local_Meta::is_request()
is_request
Returns true if the supplied $meta is from a REQUEST (serialized <form> data).
Метод класса: ACF_Local_Meta{}
Хуков нет.
Возвращает
true|false
.
Использование
$ACF_Local_Meta = new ACF_Local_Meta(); $ACF_Local_Meta->is_request( $meta );
- $meta(массив)
- An array of metdata to check.
По умолчанию: array()
Список изменений
С версии 5.7.14 | Введена. |
Код ACF_Local_Meta::is_request() ACF Local Meta::is request ACF 6.0.4
function is_request( $meta = array() ) { return acf_is_field_key( key( $meta ) ); }