WordPress and PHP 7
After months of procrastination, I finally upgraded this website to PHP 7. I had visions of diagnosing and fixing broken plugins, but everything works as it should– no deprecated function calls, etc.
I take that back. Everything feels like it works faster than it did, particularly inside the admin dashboard.
How to properly modify uploadable file types in WordPress
If you work with WordPress long enough, you will upload a file that is not in WordPress’ default list of allowed file types. The file will upload, vanish suddenly, and you’ll be informed:
“Sorry, this file type is not permitted for security reasons.”
Then you’ll search Google for something like “wordpress file type not permitted for security reasons” and see several blog entries from WordPress “experts” urging you to copy and paste a code snippet that leverages the upload_mimes filter into your theme’s functions.php file.
Too bad that’s poor advice. Continue reading “How to properly modify uploadable file types in WordPress”