yumengbai / wp-settings

0 stars 0 forks source link

up load all types of file #1

Open yumengbai opened 4 years ago

yumengbai commented 4 years ago

(wp.config) 注: before / That's all, stop editing! Happy publishing. /

define('ALLOW_UNFILTERED_UPLOADS', true);

yumengbai commented 4 years ago

(functions.php)

注://last part

function allow_personal_uploads ( $existing_mimes=array() ) {

// add your own extension here - as many as you like $existing_mimes['ipa'] = 'text/plain'; $existing_mimes['plist'] = 'text/plain'; $existing_mimes['apk'] = 'text/plain';

// return amended array return $existing_mimes; }

// call our function when appropriate add_filter('upload_mimes', 'allow_personal_uploads');