Is there a way in WordPress 3.1 to restrict allowed file uploads by extension (images only) and file size?
Bonus question: Can I limit users to only be able view files they have uploaded themselves?
Is there a way in WordPress 3.1 to restrict allowed file uploads by extension (images only) and file size?
Bonus question: Can I limit users to only be able view files they have uploaded themselves?
You must be logged in to post a comment.
I believe you can add a filter to
upload_mimes
to restrict to certain types.The hook: http://adambrown.info/p/wp_hooks/hook/upload_mimes
The filter:
From what I understand this will not work for admins or any user with the
unfiltered_upload
capability.
Also have a look at this post Limit image upload to one and disable audio, video and other document file types to upload
An alternative to control size limit would be to use .htaccess or php.ini:
For upload limit you can set in .htaccess one of the following;
For php.ini you can set
upload_max_filesize = 1M