acf/pre_save_post
allow for custom save
Використання
add_filter( 'acf/pre_save_post', 'wp_kama_acf_pre_save_post_filter', 10, 2); /** * Function for `acf/pre_save_post` filter-hook. * * @param $post_id * @param $form * * @return */ function wp_kama_acf_pre_save_post_filter( $post_id, $form ){ // Filter... return $post_id; }
- $post_id
- –
- $form
- –
Де викликається хук
acf/includes/forms/form-front.php 423
$post_id = apply_filters( 'acf/pre_save_post', $post_id, $form);