我想将字段resume_code添加到wordpress中的表格帖子中并添加 数据进入这个领域。现在我添加了一个现场通话' resume_code' 已经。但我无法将数据添加到此字段中。请帮帮我 解决。
编辑:
$post_information = array(
'ID' => $current_post,
'post_title' => $_POST['fullName'],
'post_content' => strip_tags($_POST['postContent']),
'post_type' => 'resume',
'comment_status' => 'open',
'ping_status' => 'open',
'post_status' => 'publish'
'resume_code' => $_GET['resume']
);
$post_id = wp_insert_post($post_information);