acf/fields/post_object/result
acf/fields/post_object/result
Appears in: advanced-custom-fields.6.3.5
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.3.5apply_filters('acf/fields/post_object/result') is found 1 times:
- /includes/fields/class-acf-field-post_object.php line 295291292293294295296297298299300301
$title
= html_entity_decode(
$title
);
}
// filters
$title
= apply_filters(
'acf/fields/post_object/result'
,
$title
,
$post
,
$field
,
$post_id
);
$title
= apply_filters(
'acf/fields/post_object/result/name='
.
$field
[
'_name'
],
$title
,
$post
,
$field
,
$post_id
);
$title
= apply_filters(
'acf/fields/post_object/result/key='
.
$field
[
'key'
],
$title
,
$post
,
$field
,
$post_id
);
// return untrusted output.
return
$title
;
}