Skip to content

Instantly share code, notes, and snippets.

@benmay
Created October 25, 2012 00:39
Show Gist options
  • Save benmay/3949825 to your computer and use it in GitHub Desktop.
Save benmay/3949825 to your computer and use it in GitHub Desktop.
Allow WP to upload SRT files.
add_filter( 'upload_mimes', array( &$this, 'mimes' ) );
function mimes ( $existing_mimes=array() )
{
$existing_mimes['srt'] = 'text/plain';
return $existing_mimes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment