이 문제를 처리하는 가장 좋아하는 방법은 다른 스택 게시물에서 발견 한 약간의 문서화 된 기능을 사용하는 것입니다. media_sideload_image
WordPress 업로드 디렉토리에 이미지 URL을 가져온 다음 이미지를 게시물의 첨부 파일에 연결하여 작동합니다.
당신은 그렇게 시도 할 수 있습니다 :
// required libraries for media_sideload_image
require_once(ABSPATH . 'wp-admin/includes/file.php');
require_once(ABSPATH . 'wp-admin/includes/media.php');
require_once(ABSPATH . 'wp-admin/includes/image.php');
// $post_id == the post you want the image to be attached to
// $video_thumb_url == the vimeo video's thumb url
// $description == optional description
// load the image
$result = media_sideload_image($video_thumb_url, $post_id, $description);
// then find the last image added to the post attachments
$attachments = get_posts(array('numberposts' => '1', 'post_parent' => $post_id, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC'));
if(sizeof($attachments) > 0){
// set image as the post thumbnail
set_post_thumbnail($post_id, $attachments[0]->ID);
}