File: //proc/self/cwd/wp-content/plugins/navz-photo-gallery/includes/acf_photo_gallery_save.php
<?php
// exit if accessed directly
if( ! defined( 'ABSPATH' ) ) exit;
//Fires off when the WordPress update button is clicked
function acf_photo_gallery_save( $post_id ){
// If this is a revision, get real post ID
if ( $parent_id = wp_is_post_revision( $post_id ) )
$post_id = $parent_id;
// unhook this function so it doesn't loop infinitely
remove_action( 'save_post', 'acf_photo_gallery_save' );
$field = !empty($_POST['acf-photo-gallery-groups'])? $_POST['acf-photo-gallery-groups']: array();
$field = array_map('sanitize_text_field', $field );
if( !empty($field) ){
$field_key = sanitize_text_field($_POST['acf-photo-gallery-field']);
foreach($field as $k => $v ){
$field_id = isset($_POST['acf-photo-gallery-groups'][$k])? sanitize_text_field($_POST['acf-photo-gallery-groups'][$k]): null;
if (!empty($field_id)) {
$ids = !empty($_POST[$field_id])? array_map('sanitize_text_field', $_POST[$field_id]): null;
if (!empty($ids)) {
$ids = implode(',', $ids);
update_post_meta($post_id, $field_id, $ids);
acf_update_metadata($post_id, $field_id, $field_key, true);
} else {
delete_post_meta($post_id, $v);
acf_delete_metadata($post_id, $field_id, true);
}
}
}
}
// re-hook this function
add_action( 'save_post', 'acf_photo_gallery_save' );
}
add_action( 'save_post', 'acf_photo_gallery_save' );