我正在向 wordpress 动态添加帖子。我正在使用以下代码创建帖子并添加一个工作正常但有 2 个问题的特色图片
- 它添加了 2 个帖子 1,图像本身没有其他内容,并以该图像作为特色图像的帖子进行更正。
帖子尺寸大的特色图片。
$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 );