Title: Safe SVG
Author: 10up
Published: <strong>2015년 7월 3일</strong>
Last modified: 2026년 4월 14일

---

플러그인 검색

![](https://ps.w.org/safe-svg/assets/banner-772x250.png?rev=2683939)

![](https://ps.w.org/safe-svg/assets/icon.svg?rev=2779013)

# Safe SVG

 작성자: [10up](https://profiles.wordpress.org/10up/)

[다운로드](https://downloads.wordpress.org/plugin/safe-svg.2.4.0.zip)

[실시간 미리보기](https://ko.wordpress.org/plugins/safe-svg/?preview=1)

 * [세부사항](https://ko.wordpress.org/plugins/safe-svg/#description)
 * [평가](https://ko.wordpress.org/plugins/safe-svg/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/safe-svg/#installation)
 * [개발](https://ko.wordpress.org/plugins/safe-svg/#developers)

 [지원](https://wordpress.org/support/plugin/safe-svg/)

## 설명

Safe SVG는 워드프레스에서 SVG 업로드를 허용하는 가장 좋은 방법입니다!

SVG 업로드를 허용하는 동시에 사이트에 영향을 미치는 SVG/XML 취약성을 차단하기 위해
위생 처리된 상태인지 확인하는 기능을 제공합니다. 또한 미디어 라이브러리에서 모든
보기에서 업로드한 SVG를 미리 볼 수 있는 기능도 제공합니다.

#### 현재 기능

 * **위생 처리된 SVG** – 위생 처리되지 않은 파일 업로드를 허용하여 워드프레스 사이트의
   보안 허점을 열지 마세요.
 * **SVGO 최적화** – 업로드 시 SVGO 도구를 통해 SVG를 실행하여 공간을 절약합니다.
   이 기능은 기본적으로 비활성화되어 있지만 다음 코드를 추가하여 활성화할 수 있습니다:`
   add_filter( 'safe_svg_optimizer_enabled', '__return_true' );`
 * **미디어 라이브러리에서 SVG 보기** – 어떤 SVG가 맞는지 추측하던 시대는 지났으며,
   워드프레스 미디어 라이브러리에서 SVG 미리보기를 활성화합니다.
 * **업로드할 수 있는 사용자 선택** – 워드프레스 사이트의 특정 사용자로 SVG 업로드를
   제한하거나 누구나 업로드할 수 있도록 허용합니다.

처음에는 [#24251](https://core.trac.wordpress.org/ticket/24251)에 대한 개념 증명이었습니다.

SVG 가공은 다음 라이브러리를 통해 수행됩니다: [https://github.com/darylldoyle/svg-sanitizer](https://github.com/darylldoyle/svg-sanitizer).

SVG 최적화는 다음 라이브러리를 통해 수행됩니다: [https://github.com/svg/svgo](https://github.com/svg/svgo).

## 블록

이 플러그인은 1개의 블록을 제공합니다.

 *   Safe SVG Display the SVG icon

## 설치

워드프레스 디렉토리를 통해 설치하거나 파일을 다운로드하여 압축을 풀고 `/wp-content/
plugins/` 디렉토리에 업로드합니다.

## FAQ

### 허용되는 속성 및 태그를 변경할 수 있나요?

예, `svg_allowed_attributes` 및 `svg_allowed_tags` 필터를 사용하여 이 작업을 수행할
수 있습니다.
 이 필터는 반환해야 하는 인수를 하나만 받습니다. 아래 예시를 참조하세요:

    ```
    add_filter( 'svg_allowed_attributes', function ( $attributes ) {

        // Do what you want here...

        // This should return an array so add your attributes to
        // to the $attributes array before returning it. E.G.

        $attributes[] = 'target'; // This would allow the target="" attribute.

        return $attributes;
    } );


    add_filter( 'svg_allowed_tags', function ( $tags ) {

        // Do what you want here...

        // This should return an array so add your tags to
        // to the $tags array before returning it. E.G.

        $tags[] = 'use'; // This would allow the <use> element.

        return $tags;
    } );
    ```

## 후기

![](https://secure.gravatar.com/avatar/18572aa4a12155a9fbb006511bf21eb7d29567b1d9de15168ad92ae9eb5d6b70?
s=60&d=retro&r=g)

### 󠀁[Very helpful plugin](https://wordpress.org/support/topic/very-helpful-plugin-496/)󠁿

 [jeeni](https://profiles.wordpress.org/jeeni/) 2026년 4월 22일 답글 1개

Very helpful plugin, thanks!

![](https://secure.gravatar.com/avatar/71f6586dbbc3ee4e15425b5c5aacba2f9b65db3566e3dae8ee207c0ea9cb5aa9?
s=60&d=retro&r=g)

### 󠀁[Works Well](https://wordpress.org/support/topic/works-well-3155/)󠁿

 [devlin1](https://profiles.wordpress.org/devlin1/) 2026년 3월 11일 답글 1개

Needed SVG upload support, and this plugin did the job. Very lightweight and easy
to use. No issues so far. Some additional settings would be nice, but overall, it’s
quite solid.

![](https://secure.gravatar.com/avatar/dac57dd68e7365677d7dac1e85643c8e914074c6f703a424de5388db05bd6a47?
s=60&d=retro&r=g)

### 󠀁[Nice And Easy](https://wordpress.org/support/topic/nice-and-easy-450/)󠁿

 [Reza Asadi](https://profiles.wordpress.org/asadister/) 2025년 11월 19일 답글 1
개

Nice And Easy plugin for using SVG files

![](https://secure.gravatar.com/avatar/9def864927160fb7e47804e7cf79694bbbc5a709a915434e221019a8e78f21b2?
s=60&d=retro&r=g)

### 󠀁[Good plugin, but missing …](https://wordpress.org/support/topic/good-plugin-but-missing/)󠁿

 [rrvoigt](https://profiles.wordpress.org/rrvoigt/) 2025년 6월 21일 답글 1개

Would have given a 5 star, but it seems support is missing for the taxonomy / terms
section (like in categories) upload for SVG images. Keep getting an error that the
upload isn’t supported. Hopefully this will be fixed in a future update. Will update
once this is added. Cheers!

![](https://secure.gravatar.com/avatar/91db05863fab71aeade0dec63660fe332672727d0f7d5dac4fec60fb76f8547e?
s=60&d=retro&r=g)

### 󠀁[Wonderful + fetaure request](https://wordpress.org/support/topic/wonderful-fetaure-request/)󠁿

 [Stefano](https://profiles.wordpress.org/stefacchio/) 2025년 4월 30일 답글 1개

Great plugin! very usefull, but please can you add the possibility to add an inline
SVG on the block pasting svg code? Thanks!

![](https://secure.gravatar.com/avatar/6a4a9f84970680fef58ccd8c5fc25cd8807105c66718bdcf07e86f65386df076?
s=60&d=retro&r=g)

### 󠀁[ELEMENTOR+Safe SVG=It works](https://wordpress.org/support/topic/elementorsafe-svgit-works/)󠁿

 [bandgamin](https://profiles.wordpress.org/bandgamin/) 2025년 3월 25일 답글 1개

Thanks to the plugin developers. The plugin helped me solve my issue.

 [ 모든 78 평가 읽기 ](https://wordpress.org/support/plugin/safe-svg/reviews/)

## 기여자 & 개발자

“Safe SVG”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

 *   [ 10up ](https://profiles.wordpress.org/10up/)
 *   [ Daryll Doyle ](https://profiles.wordpress.org/enshrined/)
 *   [ Jeffrey Paul ](https://profiles.wordpress.org/jeffpaul/)

“Safe SVG”(이)가 29 개 언어로 번역되었습니다. 기여해 주셔서 [번역자](https://translate.wordpress.org/projects/wp-plugins/safe-svg/contributors)
님께 감사드립니다.

[자국어로 “Safe SVG”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/safe-svg)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/safe-svg/)는, [SVN 저장소](https://plugins.svn.wordpress.org/safe-svg/)
를 확인하시거나, [개발 기록](https://plugins.trac.wordpress.org/log/safe-svg/)을
[RSS](https://plugins.trac.wordpress.org/log/safe-svg/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 2.4.0 – 2025-09-22

 * **추가됨:** 더 많은 관리자 위치에서 SVG 업로드 기능(props [@stormrockwell](https://github.com/stormrockwell),
   [@darylldoyle](https://github.com/darylldoyle), [@wpexplorer](https://github.com/wpexplorer),
   [@smerriman](https://github.com/smerriman), [@jeffpaul](https://github.com/jeffpaul),
   [@dkotter](https://github.com/dkotter) via [#279](https://github.com/10up/safe-svg/pull/279)).
 * **변경:** `safe_svg_use_width_height_attributes`, `safe_svg_dimensions` 필터에`
   $attachment_id` 인수를 추가했습니다([@roborourke](https://github.com/roborourke),
   [@dkotter](https://github.com/dkotter) via [#278](https://github.com/10up/safe-svg/pull/278)).
 * **수정됨:** 필터 `safe_svg_use_width_height_attributes` 및 `safe_svg_dimensions`
   인수의 데이터 유형이 `$svg` 일치하지 않거나 잘못되었습니다(props [@roborourke](https://github.com/roborourke),
   [@dkotter](https://github.com/dkotter) via [#278](https://github.com/10up/safe-svg/pull/278)).

#### 2.3.3 – 2025-08-13

 * **보안:** 대소문자를 구분하지 않는 속성이 살균기를 통과하는 문제를 해결하고 PHP
   8.4 지원 중단 경고를 해결하기 위해 `enshrined/svg-sanitize` 패키지를 `0.19.0`
   에서 `0.22.0`으로 업데이트합니다 (props [@darylldoyle](https://github.com/darylldoyle),
   [@sudar](https://github.com/sudar), [@georgestephanis](https://github.com/georgestephanis),
   [@dkotter](https://github.com/dkotter), [@realazizk](https://github.com/realazizk)
   via [#268](https://github.com/10up/safe-svg/pull/268), [#272](https://github.com/10up/safe-svg/pull/272)).
 * **보안:** `form-data`를 4.0.0에서 4.0.4로 상향 조정합니다([@dependabot](https://github.com/apps/dependabot),
   [@faisal-alvi](https://github.com/faisal-alvi)를 통해 [#270](https://github.com/10up/safe-svg/pull/270)
   으로 전달).
 * **보안:** `tmp`를 0.2.3에서 0.2.5로, 4.2.9에서 4.2.16으로 `@inquirer/editor`를
   상향 조정합니다([@dependabot](https://github.com/apps/dependabot), [@dkotter](https://github.com/dkotter)
   를 [#271](https://github.com/10up/safe-svg/pull/271)를 통해 지원).

#### 2.3.2 – 2025-07-21

 * **수정:** 프런트 엔드와 블록 편집기 간의 시각적 동등성([@s3rgiosan](https://github.com/s3rgiosan),
   [@dkotter](https://github.com/dkotter) via [#261](https://github.com/10up/safe-svg/pull/261),
   [#266](https://github.com/10up/safe-svg/pull/266))이 수정되었습니다.
 * **변경:** Bump WordPress “최대” 버전 6.8(props [@godleman](https://github.com/godleman),
   [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter)
   를 통해 [#251](https://github.com/10up/safe-svg/pull/251), [#254](https://github.com/10up/safe-svg/pull/254))
   까지 테스트했습니다.
 * **변경:** 워드프레스 최소 지원 버전을 6.6으로 상향 조정합니다([@godleman](https://github.com/godleman),
   [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter)
   via [#254](https://github.com/10up/safe-svg/pull/254)).
 * **보안:** `ws` 는 7.5.10에서 8.18.0으로, `@wordpress/scripts` 는 27.9.0에서 30.6.0
   으로, `nanoid`는 3.3.7에서 3.3.8로, `mocha` 는 10.2.0에서 11로 를 범프합니다.
   0.1 (소품 [@dependabot](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc)
   [#245](https://github.com/10up/safe-svg/pull/245) 경유).
 * **보안:** `@babel/runtime`를 7.23.9에서 7.27.0으로, `axios`를 1.7.4에서 1.8.4
   로, `cookie`를 0.4.2에서 0.7.1로, `express`를 4.21.0에서 4.21로 범프합니다.2에서
   0.26.0으로, `@wordpress/e2e-test-utils-playwright`에서 1.20.0으로 변경되었습니다(
   [@dependabot](https://github.com/apps/dependabot), [@dkotter](https://github.com/dkotter)
   via [#250](https://github.com/10up/safe-svg/pull/250)).
 * **보안:** 2.0.6에서 2.0.9로 `http-proxy-middleware` 상향([@dependabot](https://github.com/apps/dependabot),
   [@iamdharmesh](https://github.com/iamdharmesh)를 통해 [#253](https://github.com/10up/safe-svg/pull/253)
   으로 전달)합니다.
 * **보안:** 3.0.8에서 3.0.9로 `tar-fs` 상향(props [@dependabot](https://github.com/apps/dependabot),
   [@dkotter](https://github.com/dkotter) via [#258](https://github.com/10up/safe-svg/pull/258)).
 * **보안:** `바이트`를 3.0.0에서 3.1.2로, `압축`를 1.7.4에서 1.8.1로 상향 조정합니다(
   props [@dependabot](https://github.com/apps/dependabot), [@dkotter](https://github.com/dkotter)
   를 [#265](https://github.com/10up/safe-svg/pull/265)로 통해 전송합니다).

#### 2.3.1 – 2024-12-05

 * **수정:** SVG의 사용자 정의 치수를 결정하는 방법에 대한 변경 사항을 되돌립니다(
   [@dkotter](https://github.com/dkotter), [@martinpl](https://github.com/martinpl),
   [@subfighter3](https://github.com/subfighter3), [@smerriman](https://github.com/smerriman),
   [@gigatyrant](https://github.com/gigatyrant), [@jeffpaul](https://github.com/jeffpaul),
   [@iamdharmesh](https://github.com/iamdharmesh) via [#238](https://github.com/10up/safe-svg/pull/238)
   제보).

#### 2.3.0 – 2024-11-25

 * **추가:** 대용량 SVG 파일(약 10MB 이상)을 업로드하고 제대로 살균할 수 있도록 
   하는 새로운 설정이 추가되었습니다([@kirtangajjar](https://github.com/kirtangajjar),
   [@faisal-alvi](https://github.com/faisal-alvi), [@darylldoyle](https://github.com/darylldoyle),
   [@manojsiddoji](https://github.com/manojsiddoji), [@dkotter](https://github.com/dkotter)
   via [#201](https://github.com/10up/safe-svg/pull/201) 제보).
 * **추가:** 코드 중복을 줄이기 위해 새로운 `get_svg_dimensions` 함수를 추가했습니다(
   [@gabriel-glo](https://github.com/gabriel-glo), [@jeremymoore](https://github.com/jeremymoore),
   [@darylldoyle](https://github.com/darylldoyle), [@iamdharmesh](https://github.com/iamdharmesh),
   [@dkotter](https://github.com/dkotter) via [#216](https://github.com/10up/safe-svg/pull/216)
   제보).
 * **변경:** PHP 8.3 호환성 문제를 해결하기 위해 0.16.0에서 0.19.0으로 `enshrined/
   svg-sanitize` 패키지를 업데이트했습니다([@sksaju](https://github.com/sksaju),
   [@TylerB24890](https://github.com/TylerB24890), [@darylldoyle](https://github.com/darylldoyle),
   [@rolf-yoast](https://github.com/rolf-yoast), [@faisal-alvi](https://github.com/faisal-alvi)
   via [#214](https://github.com/10up/safe-svg/pull/214) 제보).
 * **변경:** `get_image_tag_override` 및 `one_pixel_fix` 메서드에서 이미지 치수가
   전달되는 방식을 업데이트합니다([@gabriel-glo](https://github.com/gabriel-glo),
   [@jeremymoore](https://github.com/jeremymoore), [@darylldoyle](https://github.com/darylldoyle),
   [@iamdharmesh](https://github.com/iamdharmesh), [@dkotter](https://github.com/dkotter)
   via [#216](https://github.com/10up/safe-svg/pull/216) 제보).
 * **변경:** 워드프레스 “테스트 완료” 버전을 6.7로 상향 조정([@colinswinney](https://github.com/colinswinney),
   [@jeffpaul](https://github.com/jeffpaul) via [#232](https://github.com/10up/safe-svg/pull/232),
   [#233](https://github.com/10up/safe-svg/pull/233) 제보)합니다.
 * **변경:** 워드프레스 최소 버전을 6.4에서 6.5로 상향 조정([@colinswinney](https://github.com/colinswinney),
   [@jeffpaul](https://github.com/jeffpaul)를 통해 [#232](https://github.com/10up/safe-svg/pull/232),
   [#233](https://github.com/10up/safe-svg/pull/233))합니다.
 * **변경:** 보관된 프로젝트에서 컴포저 개발자 종속성을 제거합니다([@TylerB24890](https://github.com/TylerB24890),
   [@szepeviktor](https://github.com/szepeviktor), [@peterwilsoncc](https://github.com/peterwilsoncc)
   를 통해 [#220](https://github.com/10up/safe-svg/pull/220)).
 * **수정:** Safe SVG 아이콘 블록에 적절한 블록 카테고리를 사용합니다([@kirtangajjar](https://github.com/kirtangajjar),
   [@fabiankaegy](https://github.com/fabiankaegy)를 통해 [#226](https://github.com/10up/safe-svg/pull/226)).
 * **보안:** 소독기가 해당 파일에서 실행될 수 있는 경우에만 SVG 파일 유형을 업로드하도록
   허용합니다([@darylldoyle](https://github.com/darylldoyle), [@xknown](https://github.com/xknown),
   [@dkotter](https://github.com/dkotter) via [#228](https://github.com/10up/safe-svg/pull/228)).
 * **보안:** 5.90.1에서 5.94.0으로 `webpack` 상향([@dependabot](https://github.com/apps/dependabot),
   [@peterwilsoncc](https://github.com/peterwilsoncc)를 통해 [#222](https://github.com/10up/safe-svg/pull/222)
   로 전달)합니다.
 * **보안:** `ws` 7.5.10에서 8.18.0으로, 1.15.0에서 1.16.2로, 4.19.2에서 4.21.0으로`
   serve-static`, `express` 범프([@dependabot](https://github.com/apps/dependabot),
   [@Sidsector9](https://github.com/Sidsector9), [@faisal-alvi](https://github.com/faisal-alvi)
   via [#227](https://github.com/10up/safe-svg/pull/227), [#230](https://github.com/10up/safe-svg/pull/230),
   [#234](https://github.com/10up/safe-svg/pull/234) 제보).

#### 2.2.6 – 2024-08-28

 * **변경:** 워드프레스 “테스트 완료” 버전을 6.6으로 상향(props [@sudip-md](https://github.com/sudip-md),
   [@ankitguptaindia](https://github.com/ankitguptaindia), [@jeffpaul](https://github.com/jeffpaul)
   를 통해 [#212](https://github.com/10up/safe-svg/pull/212), [#213](https://github.com/10up/safe-svg/pull/213))
   합니다.
 * **변경:** 워드프레스 최소 5.7에서 6.4로 상향 조정(props [@sudip-md](https://github.com/sudip-md),
   [@ankitguptaindia](https://github.com/ankitguptaindia), [@jeffpaul](https://github.com/jeffpaul)
   를 통해 [#212](https://github.com/10up/safe-svg/pull/212), [#213](https://github.com/10up/safe-svg/pull/213))
   합니다.
 * **보안:** [@dkotter](https://github.com/dkotter), [@xknown](https://github.com/xknown),
   [@iamdharmesh](https://github.com/iamdharmesh)를 통해 `wp_handle_sideload_prefilter`
   필터에 svg 살균을 추가합니다(props [GHSA-3vr7-86pg-hf4g](https://github.com/10up/safe-svg/security/advisories/GHSA-3vr7-86pg-hf4g)
   를 경유합니다).
 * **보안:** `braces`를 3.0.2에서 3.0.3으로, `pac-resolver`를 7.0.0에서 7.0.1로,`
   socks`를 2.7.1에서 2.8.3으로, `ws`를 7.5.9에서 7.5로 상향 조정합니다.10으로 변경하고`
   ip`를 제거합니다(소품 [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9)
   를 [#206](https://github.com/10up/safe-svg/pull/206)를 통해).
 * **보안:** 1.6.7에서 1.7.4로 `axios` 상향([@dependabot](https://github.com/apps/dependabot),
   [@faisal-alvi](https://github.com/faisal-alvi)를 통해 [#218](https://github.com/10up/safe-svg/pull/218)
   로 전달).

[이번 변경 로그 세부 정보 보기](https://github.com/10up/safe-svg/blob/develop/CHANGELOG.md).

## 커뮤니티 플러그인

이 플러그인은 커뮤니티에서 개발 및 지원합니다. [이 플러그인에 기여하기](https://github.com/10up/safe-svg)

## 기초

 *  버전 **2.4.0**
 *  최근 업데이트: **2개월 전**
 *  활성화된 설치 **1+ 백만 이상**
 *  워드프레스 버전 ** 6.6 또는 그 이상 **
 *  다음까지 시험됨: **7.0**
 *  PHP 버전 ** 7.4 또는 그 이상 **
 *  언어
 * [Belarusian](https://bel.wordpress.org/plugins/safe-svg/), [Catalan](https://ca.wordpress.org/plugins/safe-svg/),
   [Chinese (Taiwan)](https://tw.wordpress.org/plugins/safe-svg/), [Czech](https://cs.wordpress.org/plugins/safe-svg/),
   [Dutch](https://nl.wordpress.org/plugins/safe-svg/), [Dutch (Belgium)](https://nl-be.wordpress.org/plugins/safe-svg/),
   [English (Australia)](https://en-au.wordpress.org/plugins/safe-svg/), [English (Canada)](https://en-ca.wordpress.org/plugins/safe-svg/),
   [English (New Zealand)](https://en-nz.wordpress.org/plugins/safe-svg/), [English (UK)](https://en-gb.wordpress.org/plugins/safe-svg/),
   [English (US)](https://wordpress.org/plugins/safe-svg/), [French (France)](https://fr.wordpress.org/plugins/safe-svg/),
   [Galician](https://gl.wordpress.org/plugins/safe-svg/), [German](https://de.wordpress.org/plugins/safe-svg/),
   [Hungarian](https://hu.wordpress.org/plugins/safe-svg/), [Italian](https://it.wordpress.org/plugins/safe-svg/),
   [Japanese](https://ja.wordpress.org/plugins/safe-svg/), [Korean](https://ko.wordpress.org/plugins/safe-svg/),
   [Marathi](https://mr.wordpress.org/plugins/safe-svg/), [Persian](https://fa.wordpress.org/plugins/safe-svg/),
   [Polish](https://pl.wordpress.org/plugins/safe-svg/), [Portuguese (Portugal)](https://pt.wordpress.org/plugins/safe-svg/),
   [Russian](https://ru.wordpress.org/plugins/safe-svg/), [Spanish (Chile)](https://cl.wordpress.org/plugins/safe-svg/),
   [Spanish (Colombia)](https://es-co.wordpress.org/plugins/safe-svg/), [Spanish (Ecuador)](https://es-ec.wordpress.org/plugins/safe-svg/),
   [Spanish (Spain)](https://es.wordpress.org/plugins/safe-svg/), [Spanish (Venezuela)](https://ve.wordpress.org/plugins/safe-svg/),
   [Swedish](https://sv.wordpress.org/plugins/safe-svg/), 그리고 [Ukrainian](https://uk.wordpress.org/plugins/safe-svg/).
 *  [자국어로 번역하기](https://translate.wordpress.org/projects/wp-plugins/safe-svg)
 * 태그:
 * [media](https://ko.wordpress.org/plugins/tags/media/)[mime](https://ko.wordpress.org/plugins/tags/mime/)
   [security](https://ko.wordpress.org/plugins/tags/security/)[SVG](https://ko.wordpress.org/plugins/tags/svg/)
   [Vector](https://ko.wordpress.org/plugins/tags/vector/)
 *  [고급 보기](https://ko.wordpress.org/plugins/safe-svg/advanced/)

## 평점

 별 5점 만점에 4.9점.

 *  [  70/5-별점 후기     ](https://wordpress.org/support/plugin/safe-svg/reviews/?filter=5)
 *  [  7/4-별점 후기     ](https://wordpress.org/support/plugin/safe-svg/reviews/?filter=4)
 *  [  0/3-별점 후기     ](https://wordpress.org/support/plugin/safe-svg/reviews/?filter=3)
 *  [  1/2-별점 후기     ](https://wordpress.org/support/plugin/safe-svg/reviews/?filter=2)
 *  [  0/1-별점 후기     ](https://wordpress.org/support/plugin/safe-svg/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/safe-svg/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/safe-svg/reviews/)

## 기여자

 *   [ 10up ](https://profiles.wordpress.org/10up/)
 *   [ Daryll Doyle ](https://profiles.wordpress.org/enshrined/)
 *   [ Jeffrey Paul ](https://profiles.wordpress.org/jeffpaul/)

## 지원

지난 2개월 동안 해결된 문제:

     1 중 0

 [지원 포럼 보기](https://wordpress.org/support/plugin/safe-svg/)