Skip to content

Instantly share code, notes, and snippets.

@mjones129
mjones129 / fixdivi.html
Created July 28, 2024 11:42
Preload Divi Icons As Fonts (fix menu icons rendering as numbers or letters)
<!-- Include in Divi > Theme Options > Integrations > Add code to the <head> of your blog -->
<link rel="preload" href="wp-content/themes/Divi/core/admin/fonts/modules/all/modules.ttf" as="font" type="font/ttf" crossorigin= "anonymous">
@mjones129
mjones129 / functions.php
Last active December 21, 2024 02:51
Add mime types to WordPress
/**
* Add new allowed media types
*/
function mjt_add_mime_types( $wp_get_mime_types ) {
$wp_get_mime_types['webp'] = 'image/webp';
$wp_get_mime_types['svg'] = 'image/svg+xml';
$wp_get_mime_types['docx'] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
$wp_get_mime_types['pdf'] = 'application/pdf';
return $wp_get_mime_types;
#AllowList
0.0.0.0 luanti.org