我正在以编程方式将图片上传到我的 Wordpress 媒体库,并将它们设置为我的帖子的特色图片,效果很好。
我想生成这些特色图像的缩略图,就像 Wordpress 在通过“插入媒体” Pane 添加图像时处理创建调整大小的缩略图的方式相同,在其中创建多个文件,每个文件都具有在文件名中指定的新尺寸。
不幸的是,我很难找到任何解释如何正确执行此操作的内容。
下面是相关代码。它成功地创建了帖子并将特色图片设置为媒体文件,但不会生成与之配套的缩略图。
任何帮助将不胜感激!
// 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);
}
最佳答案
你应该使用另一个 - 相当未知和误解的功能 - media_sideload_image()
$attach_id = media_sideload_image($filename, $post_id);
此函数将处理
"upload"
过程,并将遵循将图像上传到 wordpress 的正常工作流程,其中包括在 custom image sizes
中定义的拇指生成关于wordpress - 如何创建使用 wp_insert_attachment 以编程方式上传的图像的调整大小版本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16127152/