“Subir WebP a WordPress” Código de respuesta

Subir WebP a 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

No se puede subir WebP a 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

Respuestas similares a “Subir WebP a WordPress”

Preguntas similares a “Subir WebP a WordPress”

Más respuestas relacionadas con “Subir WebP a WordPress” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código