Last active
August 9, 2022 22:00
-
-
Save MariaJackson1/0c2e0cce22096650a83d522bfbd5184e to your computer and use it in GitHub Desktop.
Add to functions.php #dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function my_myme_types($mime_types){ | |
| $mime_types['svg'] = 'image/svg+xml'; | |
| return $mime_types; | |
| } | |
| add_filter('upload_mimes', 'my_myme_types', 1, 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment