如何在wordpress中的表wp_post中添加一列并将数据添加到列中?

时间:2015-08-03 08:04:35

标签: php wordpress

  

我想将字段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);

0 个答案:

没有答案