“Carregue o webp para o WordPress” Respostas de código

Carregue o webp para o 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

Não é possível fazer upload do webp para o 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

Respostas semelhantes a “Carregue o webp para o WordPress”

Perguntas semelhantes a “Carregue o webp para o WordPress”

Mais respostas relacionadas para “Carregue o webp para o WordPress” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código