Media Library Mime Types to WordPress

Authored by

This is the type of code that needs to be added to your functions.php file in order to allow you to upload files into your media library.

function custom_myme_types($mime_types){
    //add a new array item to this array to allow uploading of that file type.
    $new_mime_types = array(
            'ogg' => 'audio/ogg',
            'ogv' => 'video/ogg',
            'webm' => 'video/webm',
        );

    //checks to see if there is actually new mime_times to add.
    if ( count($new_mime_types) > 0) {
        foreach ( $new_mime_types as $mime_ext => $new_mime_type ) {
            $mime_types[$mime_ext] = $new_mime_type;
        }
    }

    return $mime_types;
}
add_filter('upload_mimes', 'custom_myme_types', 1, 1);

 

Other Code Snippets

Change Permissions or Ownership of Files or Directories Recursively

Code Snippet | Linux

Sometimes when you are moving files from one host to another, you have to change the files owner or permissions so the web server can utilize it properly.

Read More
Find Files by Size

Code Snippet | Linux

Here is a Linux command line that searches for files that are over a certain size so that you can find where you might be able to free up some space. Useful to find error_logs that have run amok.

Read More
Import MySQL from Command Line

Code Snippet | Linux | MySQL

Here is a method to import a SQL file into a database via the Linux command line.

Read More
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram