我正在使用高级自定义字段抓取XML / RSS提要以在Wordpress中创建帖子。使用update_field很容易更新文本和数字字段,但看起来图像是一个不同的故事。我们提取的图片链接是一个简单的jpg,但您无法将网址加载到媒体库中。
我已经研究过使用wordpress函数将图像保存到我们的数据库中,然后抓住附件ID并传递给ACF。这个功能需要一段时间来创建,所以我正在寻找处理这个的潜在的其他方法(如果有的话)。
// create new post
$new_post = array(
'post_title' => $title,
'post_status' => 'publish',
'post_type' => 'media'
);
$post_id = wp_insert_post($new_post);
wp_set_object_terms($post_id, $media_type, 'taxonomy_media');
// use ACF API to update fields in post
// update_field( $field key, $value, $post_id)
update_field('field_xxxxxxxxxx', $title, $post_id);
update_field('field_xxxxxxxxxx', $url, $post_id);
update_field('field_xxxxxxxxxx', $image, $post_id); // wont work
update_field('field_xxxxxxxxxx', $name, $post_id);
其他人遇到过这个问题并有办法解决?感谢
答案 0 :(得分:0)
而不是通过Wordpress库上传。我刚刚结束了保存图像的URL并在我的模板中使用它。