functions.php Pipe

  • In Progress
    Posted in: Highend WP Theme  
  • Customer
    Jammers333
    December 2, 2014 at 11:00 pm #19247

    I am trying to add this code to the functions.php so I may upload EPUB|MOBI files as follows:

    function addUploadMimes($mimes) {
    $mimes = array_merge($mimes, array(
    ‘epub|mobi’ => ‘application/octet-stream’
    ));
    return $mimes;
    }
    add_filter(‘upload_mimes’, ‘addUploadMimes’);

    However it keeps conflicting with your hook, how do I correct for this so I can upload the aforementioned files?
    Thank you

    Sorry, this forum is for verified users only. Please Login or Register to continue

Comments are closed.