Apparently, WP does not like the epub extensions, yet we are planning on selling ebooks.
I found this snippet, which needs to be added to the functions.php of the theme, and wanted to make sure of two things:
1. will it be compatible with Royal?
2. what is “application/octet-stream”? is it directory where the epub files should be residing?
<?php
function addUploadMimes($mimes) {
$mimes = array_merge($mimes, array(
'epub' => 'application/octet-stream'
));
return $mimes;
}
?>
add_filter('upload_mimes', 'addUploadMimes');