keenc
4/14/2020 - 3:28 AM

【Function】wp media新增文件格式

// Function to allow .csv uploads
function drick_custom_upload_mimes($mimes = array()) {

	// Add a key and value for the CSV file type
	$mimes['csv'] = "text/csv";
	return $mimes;
}
add_filter('upload_mimes', 'drick_custom_upload_mimes');