4

我正在以编程方式将图像上传到我的 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);

}
4

2 回答 2

5

您应该使用另一个 - 相当未知和被误解的功能 - media_sideload_image()

 $attach_id = media_sideload_image($filename, $post_id);

此函数将处理该"upload"过程,并将遵循将图像上传到 wordpress 的正常工作流程,其中包括在您的定义中定义的拇指生成custom image sizes

于 2013-04-21T02:42:36.733 回答
-3

Kaput,您的代码非常好,但似乎您的初始图像不在上传文件夹中。看看文档是怎么说的:

服务器上文件的位置。使用绝对路径而不是文件的 URI。该文件必须在上传目录中。请参阅 wp_upload_dir()。

只需确保首先将图像上传到上传目录中。

于 2013-05-09T15:44:10.943 回答