acf/load_value
acf/load_value
Appears in: advanced-custom-fields.6.2.7
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.2.7apply_filters('acf/load_value') is found 1 times:
- /includes/acf-value-functions.php line 118114115116117118119120121122123
* @param mixed
$value
The value to preview.
* @param string
$post_id
The post ID
for
this value.
* @param
array
$field
The field
array
.
*/
$value
= apply_filters(
'acf/load_value'
,
$value
,
$post_id
,
$field
);
// Update store if we allowed the value load.
if
(
$allow_load
) {
$store
->set(
"$post_id:$field_name"
,
$value
);
}