function cc_mime_types($mimes){$mimes['svg']='image/svg+xml';return $mimes}add_filter('upload_mimes','cc_mime_types');function fix_svg_display(){echo '
    <style>
        .attachment-266x266 img,
        .thumbnail img {
            width: 100% !important;
            height: auto !important;
        }
    </style>'}add_action('admin_head','fix_svg_display');function sanitize_svg_content($svg){$dom=new DOMDocument();libxml_use_internal_errors(true);// טעינה בטוחה ללא ישויות חיצוניות $dom->loadXML($svg,LIBXML_NONET);libxml_clear_errors();$svg_element=$dom->getElementsByTagName('svg')->item(0);if (!$svg_element){return $svg}return $dom->saveXML($svg_element)}add_filter('wp_handle_upload',function($file){if (isset($file['type']) && $file['type']==='image/svg+xml'){$svg_raw=file_get_contents($file['file']);$clean_svg=sanitize_svg_content($svg_raw);file_put_contents($file['file'],$clean_svg)}return $file});