1

我正在为我多年前开发的 WordPress 插件添加升级。这个插件只是一个产品目录,所以只显示产品及其图像。产品可以有多个图像。

我正在通过 CSS 重新调整旧版本插件中的图像大小,为它们分配宽度和高度。这是有效的,但图像看起来很拉伸,但用户很高兴。现在我在插件中添加了一个新功能,即从上传的图像中裁剪和重新调整大小,并以不同的名称保存,例如 thumbnail.jpg。新功能对于上传图片的新用户来说效果显着,但对于升级到新版本的老用户来说,这个功能非常有效。

问题是老用户已经拥有产品和图像。当我尝试通过foreach循环获取所有产品和图像时,它在 200 - 250 张图像上完美运行,但在超过 250 张图像上中断 - 没有错误:(

我的许多老用户都有 600 多张图像,所以我想要一种方法来裁剪和重新调整现有图像的大小,并用新名称保存它们并将文件名保存在数据库中。

我正在使用 wordpress 的默认wp_get_image_editor();功能。

这是我获取具有图像的旧产品的查询:

$wpc_product_images_sql = "Select wpc_posts.*, wpc_meta.* From " . $wpdb->posts . " As wpc_posts Inner Join " . $wpdb->postmeta . " As wpc_meta On wpc_posts.ID = wpc_meta.post_id Where wpc_meta.meta_key = 'product_images' Order By wpc_posts.post_title;

这是我的foreach循环(我正在使用两个循环。第一个是获取具有图像的产品,第二个循环是从每个帖子中获取图像,正如我之前在我的问题中提到的那样,产品可以有多个图像.所以必须使用两个循环)

foreach ($wpc_images_qry as $wpc_prod_images) {

                echo '<div class="wpc_image_body">'
                . '<h3>' . $wpc_prod_images->post_title . '</h3>'
                . '<div class="wpc_images">';

                $wpc_post_id = $wpc_prod_images->ID;
                $wpc_product_images = get_post_meta($wpc_post_id, 'product_images', true);

                $big_img_name = array();
                foreach ($wpc_product_images as $wpc_prod_img) {
                    /// For Big
                    $big_resize_img = wp_get_image_editor($wpc_prod_img['product_img']);
                    if (!is_wp_error($big_resize_img)) {
                        $product_big_img = $wpc_prod_img['product_img'];

                        $product_img_explode = explode('/', $product_big_img);
                        $product_img_name = end($product_img_explode);
                        $product_img_name_explode = explode('.', $product_img_name);

                        $product_img_name = $product_img_name_explode[0];
                        $product_img_ext = $product_img_name_explode[1];

                        $big_crop = array('center', 'center');
                        $big_resize_img->resize($wpc_image_width, $wpc_image_height, $big_crop);
                        $big_filename = $big_resize_img->generate_filename('big-' . $wpc_image_width . 'x' . $wpc_image_height, $upload_dir['path'], NULL);
                        $big_resize_img->save($big_filename);

                        $big_img_name[]['wpc_big_img'] = $upload_dir['url'] . '/' . $product_img_name . '-big-' . $wpc_image_width . 'x' . $wpc_image_height . '.' . $product_img_ext;


                        if (file_exists($upload_dir['path'] . '/' . $product_img_name . '-big-' . $wpc_image_width . 'x' . $wpc_image_height . '.' . $product_img_ext)) {

                            echo $upload_dir['path'] . '/' . $product_img_name . '-big-' . $wpc_image_width . 'x' . $wpc_image_height . '.' . $product_img_ext . ' - <strong style="color: #7ad03a;">OK</strong><br>';

                        } else {
                            echo $upload_dir['path'] . '/' . $product_img_name . '-big-' . $wpc_image_width . 'x' . $wpc_image_height . '.' . $product_img_ext . ' <strong style="color: red">:(</strong><br>';
                        }
                    }

                }
                update_post_meta($wpc_post_id, 'wpc_big_images', $big_img_name);

                echo '</div>'
            . '</div>';
            }
4

2 回答 2

0

您可以尝试使用 add_image_size()添加新的图像大小, 然后运行 ​​https://wordpress.org/plugins/regenerate-thumbnails/ 这肯定可以解决超时问题。有一种方法可以在更新时为您的插件用户显示一条消息,如果他们有旧图像,请他们安装并运行插件。

希望这对你有用。

于 2015-07-12T08:36:37.687 回答
0

如果您想调整图像大小意味着遵循这些,它会在媒体中上传图像时调整您的图像大小,

add_filter('wp_handle_upload_prefilter','aj_handle_upload');

function aj_handle_upload($file)
{

    add_image_size( 'mobile', 360, 0, array( 'center', 'center' ));//mobile is userdefined name.    
    add_image_size( 'desktop', 700, 0, array( 'center', 'center' ));//desktop & tablet is user defined name.    
    return $file;
}
于 2015-09-09T17:55:38.963 回答