acf/prevent_access_to_unknown_fields
acf/prevent_access_to_unknown_fields
Appears in: advanced-custom-fields.6.3.5
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.3.5apply_filters('acf/prevent_access_to_unknown_fields') is found 2 times:
- /includes/acf-value-functions.php line 7471727374757677787980
// Check if we should trigger warning about accessing fields too early via action.
do_action(
'acf/get_invalid_field_value'
,
$field
,
__FUNCTION__
);
if
( apply_filters(
'acf/prevent_access_to_unknown_fields'
, false ) || (
'option'
===
$decoded
[
'type'
] &&
'options'
!==
$decoded
[
'id'
] ) ) {
$allow_load
= false;
}
}
// If we're using a non options_ option key, ensure we have a valid reference key.
if
(
'option'
===
$decoded
[
'type'
] &&
'options'
!==
$decoded
[
'id'
] ) {
- /includes/api/api-template.php line 106110571058105910601061106210631064106510661067
}
}
}
$access_already_prevented
= apply_filters(
'acf/prevent_access_to_unknown_fields'
, false );
$filter_applied
= false;
if
( !
$access_already_prevented
) {
$filter_applied
= true;
add_filter(
'acf/prevent_access_to_unknown_fields'
,
'__return_true'
);
}