Created
January 29, 2017 05:23
-
-
Save nayemDevs/086be36e7b51ced25e556e6378a58c02 to your computer and use it in GitHub Desktop.
Add MIME type
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*MIME TYPE*/ | |
function wpufe_custom_upload_extensions( $extensions ) { | |
$extensions['custom'] = array( | |
'label' => __( 'Custom Extensions', 'wpuf' ), | |
'ext' => 'eps,ai', | |
); | |
return $extensions; | |
} | |
add_filter( 'wpuf_allowed_extensions', 'wpufe_custom_upload_extensions' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment