3

我正在向 wordpress 动态添加帖子。我正在使用以下代码创建帖子并添加一个工作正常但有 2 个问题的特色图片

  1. 它添加了 2 个帖子 1,图像本身没有其他内容,并以该图像作为特色图像的帖子进行更正。
  2. 帖子尺寸大的特色图片。

    $post_id = wp_insert_post($postdata, true);
    //从一个url保存图片
    $attachmentId_id = wp_insert_attachment( $attachment,$fullpathfilename,0);
    add_post_meta( $post_id, '_thumbnail_id', $attachmentId, true );

4

1 回答 1

3

如果父 ID 设置为零,wp_insert_attachment 会自行创建帖子。

尝试:

wp_insert_attachment( $attachment,$fullpathfilename,$post_id);
于 2012-09-21T02:53:12.790 回答