/**
* Theme Name: Printec Child
* Description: This is a child theme of Printec, generated by Merlin WP.
* Author: <a href="https://pavothemes.com/">Pavothemes</a>
* Template: printec
* Version: 1.2.9
*/

/* Allow SVG Uploads */

function add_svg_to_upload_mimes($mimes) {
    $mimes['svg'] = 'image/svg+xml';
    return $mimes;
}
add_filter('upload_mimes', 'add_svg_to_upload_mimes');
