“Загрузите WebP в WordPress” Ответ

Загрузите WebP в 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

Не могу загрузить Webp в 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

Ответы похожие на “Загрузите WebP в WordPress”

Вопросы похожие на “Загрузите WebP в WordPress”

Больше похожих ответов на “Загрузите WebP в WordPress” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования