Код: Выделить всё
add_action('edit_post_applications', 'add_new_university');
function add_new_university($id)
{
$post_field = get_fields($id);
return wp_insert_post(array(
'post_type' => 'institution',
'post_title' => get_post($id)->post_title,
'post_status' => 'publish',
'meta_input' => array(
'full_name' => $post_field['full_name'],
'short_name' => $post_field['short_name']
),
));
}
Подробнее здесь: https://stackoverflow.com/questions/790 ... duplicated
Мобильная версия