最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plugins - Restrict media upload size by format

programmeradmin0浏览0评论

I'm looking for a way to restrict the size of the media when uploading (a plugin or just a function).

So I found this:

function increase_upload_size_limit( $limit ) {
  return 524288;
}
add_filter( 'upload_size_limit', 'increase_upload_size_limit' );

And it's working, but the thing is that i'd like to choose a different size restriction for a pdf than for a jpeg.

The thing that would really be perfect is to be able to choose the max size per format. And when uploading a media, it tries compressing it, and if the compression isn't able to compress enough (to be under the max size selected) then there's a message saying that this media can't be uploaded due to its size.

So if it just restrict upload size by format it will be good enough for me.

Thanks a lot!

发布评论

评论列表(0)

  1. 暂无评论