“Unggah Webp ke WordPress” Kode Jawaban

Unggah Webp ke WordPress

// add this code into your function.php file in theme editor

function webp_upload_mimes( $existing_mimes ) {
	// add webp to the list of mime types
	$existing_mimes['webp'] = 'image/webp';

	// return the array back to the function with our added mime type
	return $existing_mimes;
}
add_filter( 'mime_types', 'webp_upload_mimes' );
Charming Constrictor

tidak dapat mengunggah webp ke wordpress

function webp_upload_mimes( $existing_mimes ) {
	// add webp to the list of mime types
	$existing_mimes['webp'] = 'image/webp';

	// return the array back to the function with our added mime type
	return $existing_mimes;
}
add_filter( 'mime_types', 'webp_upload_mimes' );
Charming Constrictor

Jawaban yang mirip dengan “Unggah Webp ke WordPress”

Pertanyaan yang mirip dengan “Unggah Webp ke WordPress”

Lebih banyak jawaban terkait untuk “Unggah Webp ke WordPress” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya