“Laden Sie WebP in WordPress hoch” Code-Antworten

Laden Sie WebP in WordPress hoch

// 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

Webp kann nicht auf WordPress hochgeladen werden

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

Ähnliche Antworten wie “Laden Sie WebP in WordPress hoch”

Fragen ähnlich wie “Laden Sie WebP in WordPress hoch”

Weitere verwandte Antworten zu “Laden Sie WebP in WordPress hoch” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen