我正在以编程方式将图像上传到我的 Wordpress 媒体库,并将它们设置为我帖子的特色图像,效果很好。
我想生成这些特色图像的缩略图,就像在通过“插入媒体”窗格添加图像时 Wordpress 处理创建调整大小的缩略图的方式一样,它会在其中创建多个文件,每个文件都具有在文件名中指定的新尺寸。
不幸的是,我很难找到任何解释如何正确完成的东西。
下面是相关代码。它成功创建帖子并将特色图像设置为媒体文件,但不会生成缩略图。
任何帮助将不胜感激!
// If the post was created
if($post_id) {
// Add meta/custom field data
add_post_meta($post_id, 'gif_random_id', $randomId);
// Add uploaded file to the actual Wordpress image library
global $uploadURL;
$filename = $uploadURL . $randomId . '.' . $fileExtension;
$wp_filetype = wp_check_filetype(basename($filename), null);
$wp_upload_dir = wp_upload_dir();
$attachment = array(
'guid' => $wp_upload_dir['url'] . '/' . basename($filename),
'post_mime_type' => $wp_filetype['type'],
'post_title' => preg_replace('/\.[^.]+$/', '', basename($filename)),
'post_content' => '',
'post_status' => 'publish'
);
$attach_id = wp_insert_attachment($attachment, $filename, $post_id);
$attach_data = wp_generate_attachment_metadata($attach_id, $filename);
wp_update_attachment_metadata($attach_id, $attach_data);
// Now set the attachement as the featured image
update_post_meta($post_id, '_thumbnail_id', $attach_id);
}