Мне нужно добавить в существующие записи информацию, именно в саму статью. Плагин только перезаписывает содержимое. Как сделать так, чтобы добавлять, а не перезаписывать? Пробовала искать инфу, нашла только про доп.поля. Вот код
function custom_field_append($id)
{
// Get the current value of your meta key.
$value = get_post_meta($id, 'your_meta_key', true);
// Get the temp value we imported.
$temp = get_post_meta($id, '_temp', true);
// Append the temp value to the original value and
// save it to your meta key
update_post_meta($id, 'your_meta_key', $value . $temp);
// Delete the temp field.
delete_post_meta($id, '_temp');
}
add_action('pmxi_saved_post', 'custom_field_append', 10, 1);
Помогите адаптировать под мои нужды, пожалуйста!