Skip to content

Instantly share code, notes, and snippets.

@maheshwaghmare
Created December 14, 2018 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maheshwaghmare/95af0f5b43fde8f44a7706853393375a to your computer and use it in GitHub Desktop.
Save maheshwaghmare/95af0f5b43fde8f44a7706853393375a to your computer and use it in GitHub Desktop.
MIME type for importing the XML file with text/xml it does not import due to application/xml due to real MIME type validation in WordPress v5.0.1
<?php
$overrides = array(
...
...
'mimes' => array(
'xml' => 'text/xml', // Download XML file.
),
);
wp_handle_sideload( $file_args, $overrides );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment