$info['categoria'], 'post_content' => $content, 'post_status' => 'publish', 'post_title' => $title, 'post_type' => 'marker', 'comment_status' => 'closed' //'tags_input' => [ ', , <...>' ] //For tags. ); $post_id=wp_insert_post($post_d); update_post_meta($post_id, 'soundmap_marker_lat', $soundmark_lat); update_post_meta($post_id, 'soundmap_marker_lng', $soundmark_lng); update_post_meta($post_id, 'soundmap_marker_author', $soundmark_author); update_post_meta($post_id, 'soundmap_marker_date', $soundmark_date); update_post_meta($post_id, 'EMAIL', $soundmark_mail); $files = $info['attachID']; delete_post_meta($post_id, 'soundmap_attachments_id'); update_post_meta($post_id, 'soundmap_attachments_id', $files); soundmap_attach_file($files, $post_id); echo "ok"; die(); } ?>