问题描述

我需要一种限制作者上传特定尺寸图像的方法。

说我只想允许上传至少为 400px x 400px 的图片。如果图像尺寸较小,作者应该收到错误提示,图像太小。

有没有可以完成这个的插件或代码?

最佳解决方案

将此代码添加到主题的 functions.php 文件中,并将限制最小图像尺寸

add_filter('wp_handle_upload_prefilter','tc_handle_upload_prefilter');
function tc_handle_upload_prefilter($file)
{

    $img=getimagesize($file['tmp_name']);
    $minimum = array('width' => '640', 'height' => '480');
    $width= $img[0];
    $height =$img[1];

    if ($width < $minimum['width'] )
        return array("error"=>"Image dimensions are too small. Minimum width is {$minimum['width']}px. Uploaded image width is $width px");

    elseif ($height <  $minimum['height'])
        return array("error"=>"Image dimensions are too small. Minimum height is {$minimum['height']}px. Uploaded image height is $height px");
    else
        return $file;
}

然后只需更改所需的最小尺寸数 (在我的示例中为 640 和 480)

次佳解决方案

我不喜欢重新设计一个同事的代码。所以,这与 MaorBarazany 的答案几乎是一样的,但检查 mime 类型,更改 file['error']声明并将函数命名空间更改为此 wpse 问题 ID 。

此外,仅对不是管理员的用户进行检查。

add_action( 'admin_init', 'wpse_28359_block_authors_from_uploading_small_images' );

function wpse_28359_block_authors_from_uploading_small_images()
{
    if( !current_user_can( 'administrator') )
        add_filter( 'wp_handle_upload_prefilter', 'wpse_28359_block_small_images_upload' );
}

function wpse_28359_block_small_images_upload( $file )
{
    // Mime type with dimensions, check to exit earlier
    $mimes = array( 'image/jpeg', 'image/png', 'image/gif' );

    if( !in_array( $file['type'], $mimes ) )
        return $file;

    $img = getimagesize( $file['tmp_name'] );
    $minimum = array( 'width' => 640, 'height' => 480 );

    if ( $img[0] < $minimum['width'] )
        $file['error'] =
            'Image too small. Minimum width is '
            . $minimum['width']
            . 'px. Uploaded image width is '
            . $img[0] . 'px';

    elseif ( $img[1] < $minimum['height'] )
        $file['error'] =
            'Image too small. Minimum height is '
            . $minimum['height']
            . 'px. Uploaded image height is '
            . $img[1] . 'px';

    return $file;
}

钩的结果:

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。