Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
wp-smart-import
/
includes
/
save_post
/
//home/puskom/mastur/wp-smart-import/includes/save_post/custom_field.php
<?php if (!empty($pvalue['custom_field_name'])) { $custom_field_name = $pvalue['custom_field_name']; $custom_fied_value = $pvalue['custom_field_value']; foreach ($custom_field_name as $key => $field_name) { $array = array('id' => $post_id, 'key' => $field_name, 'value' => $custom_fied_value[$key]); add_post_meta($post_id, sanitize_text_field($field_name), $custom_fied_value[$key]); } }