“Télécharger webp sur wordpress” Réponses codées

Télécharger webp sur 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

Impossible de télécharger webp sur 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

Réponses similaires à “Télécharger webp sur wordpress”

Questions similaires à “Télécharger webp sur wordpress”

Plus de réponses similaires à “Télécharger webp sur wordpress” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code