1

我想在 WordPress 中从前端发布附件,这是我的有效代码:

形成过程:

global $post;

if ( $_FILES ) {
    $files = $_FILES['upload_attachment'];
    foreach ($files['name'] as $key => $value) {
        if ($files['name'][$key]) {
            $file = array(
                'name' => $files['name'][$key],
                'type' => $files['type'][$key],
                'tmp_name' => $files['tmp_name'][$key],
                'error' => $files['error'][$key],
                'size' => $files['size'][$key]
            );

            $_FILES = array("upload_attachment" => $file);

            foreach ($_FILES as $file => $array) {
                $newupload = insert_attachment($file,0);
            }
        }
    }
}

处理上传的函数:

function insert_attachment($file_handler,$post_id,$setthumb='false') {
    // check to make sure its a successful upload
    if ($_FILES[$file_handler]['error'] !== UPLOAD_ERR_OK) __return_false();

    require_once(ABSPATH . "wp-admin" . '/includes/image.php');
    require_once(ABSPATH . "wp-admin" . '/includes/file.php');
    require_once(ABSPATH . "wp-admin" . '/includes/media.php');

    $attach_id = media_handle_upload( $file_handler, $post_id );

    if ($setthumb) update_post_meta($post_id,'_thumbnail_id',$attach_id);
    return $attach_id;
}

我想设置post_author附件的,因为当前默认为当前登录用户。

我尝试将以下内容添加到函数中,但它似乎不起作用:

$my_post = array(
    'ID'          => $attach_id,
    'post_author' => 2
);
wp_update_post( $my_post );
4

2 回答 2

1

不太确定发生了什么,我重试了这个,似乎奏效了!只是想更新以防其他人有同样的问题!

   $my_post = array(
      'ID'           => $attach_id,
      'post_author' => 2
    );
    wp_update_post( $my_post );
于 2013-09-17T14:52:50.403 回答
0
if ($setthumb) {
    update_post_meta($post_id, '_thumbnail_id', $attach_id);
}

好吧,根据 wp_update_post( codex ) 你必须通过POST_ID,我不确定你$attach_id是否是帖子 ID,根据update_post_meta($post_id, '_thumbnail_id', $attach_id);Pass the$post_id

$my_post = array(
  'ID' => $post_id,
  'post_author' => 2
);
wp_update_post( $my_post );
于 2013-09-17T09:31:35.440 回答