acf/pre_save_post
acf/pre_save_post
Appears in: advanced-custom-fields.6.2.7
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.2.7apply_filters('acf/pre_save_post') is found 1 times:
- /includes/forms/form-front.php line 383379380381382383384385386387388389
// add global for backwards compatibility
$GLOBALS
[
'acf_form'
] =
$form
;
// allow for custom save
$post_id
= apply_filters(
'acf/pre_save_post'
,
$post_id
,
$form
);
// save
acf_save_post(
$post_id
);
// restore form (potentially modified)
$form
=
$GLOBALS
[
'acf_form'
];