我试图上传外部图片并通过php
将其设置为精选图片使用的代码如下,
$photo = new WP_Http();
$photo = $photo->request( $article->largeURL );
$attachment = wp_upload_bits( $photo_name . '.jpg', null, $photo['body'], date("Y-m", strtotime( $photo['headers']['last-modified'] ) ) );
$filetype = wp_check_filetype( basename( $attachment['file'] ), null );
$postinfo = array(
'post_mime_type' => $filetype['type'],
'post_title' => $article->heading . ' ',
'post_content' => '',
'post_status' => 'inherit',
);
$filename = $attachment['file'];
$attach_id = wp_insert_attachment( $postinfo, $filename, $newId );
if( !function_exists( 'wp_generate_attachment_data' ) )
require_once(ABSPATH . "wp-admin" . '/includes/image.php');
$attach_data = wp_generate_attachment_metadata( $attach_id, $filename );
wp_update_attachment_metadata( $attach_id, $attach_data );
set_post_thumbnail($newId,$attach_id)
它将图像上传到媒体但不设置为精选图片,但我认为问题出在图片上传,媒体'中的附件屏幕。看起来如下
http://cl.ly/image/0z2k1b1d0m1J
这似乎表明某些信息没有正确显示,因为没有缩略图,名称或类型。
所有帮助非常感谢! 感谢
答案 0 :(得分:2)
我会评论,但我还不允许。
1)你是从后端还是前端做到这一点?您可能需要nonce key
2)在set_post_thumbnail
,$newId = $post->ID
?这可能就是为什么它不作为特色图像附加的原因
3)您的文件名未保留扩展名/ $photo_name
未在代码中定义。使用wp_handle_upload可能会更好。