/*
 Theme Name:     BlurredLines
 Theme URI:      https://blurredlines.uk/
 Description:    Divi Child Theme
 Author:         Pollard Creative
 Author URI:     https://www.pollardcreative.co.uk
 Template:       Divi
 Version:        1.0.0
*/
 
/* =Theme customization starts here
------------------------------------------------------- */

// Source - https://stackoverflow.com/a/74624817
// Posted by ZecKa
// Retrieved 2026-07-14, License - CC BY-SA 4.0

 add_filter('upload_mimes', 'prefix_add_ttf_upload_mimes');
 function prefix_add_ttf_upload_mimes($existing_mimes) {
      $existing_mimes['ttf'] = 'font/ttf';   
      return $existing_mimes;
 }
