“Prześlij WebP do WordPress” Kod odpowiedzi

Prześlij WebP do 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

Nie można przesyłać WebP do 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

Odpowiedzi podobne do “Prześlij WebP do WordPress”

Pytania podobne do “Prześlij WebP do WordPress”

Więcej pokrewnych odpowiedzi na “Prześlij WebP do WordPress” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu