by 10up
4.9 (77 reviews)
Safe SVG
Enable SVG uploads and sanitize them to stop XML/SVG vulnerabilities in your WordPress website.
Compatible with WP 6.9.4
v2.4.0
Current Version v2.4.0
Updated 2 months ago
Last Update on 05 Jan, 2026
Refreshed 6 hours ago
Last Refreshed on
Rank
#64
—
No change
Active Installs
1M+
—
No change
KW Avg Position
47.6
+0.2 better
Downloads
12.8M
+3,660 today
Support Resolved
50%
—
No change
Rating
98%
Review 4.9 out of 5
4.9
(77 reviews)
Next Milestone 2M
1M+
2M+
30
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 30,000,000 more installs to reach 2M+
Rank Changes
Current
#64
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.9
77 reviews
Overall
98%
5
69
(90%)
4
7
(9%)
3
0
(0%)
2
1
(1%)
1
0
(0%)
Tracked Keywords
Showing 5 of 5| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| Vector | 3 | — | Tag | 15 hours ago |
| mime | 7 | — | Tag | 15 hours ago |
| SVG | 11 | — | Tag | 15 hours ago |
| media | 102 | — | Tag | 15 hours ago |
| security | 115 | — | Tag | 15 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Resolved
Unresolved
2
Total Threads
1
Resolved
1
Unresolved
50%
Resolution Rate
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.4.0
- Last Updated
- Jan 05, 2026
- Requires WP
- 6.6+
- Tested Up To
- 6.9.4
- PHP Version
- 7.4 or higher
- Author
- 10up
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.9
- Reviews
- 77
- Support Threads
- 2
- Resolved
- 50%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,716
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#953
iubenda | All-in-one Compliance for GDPR / CCPA Cookie Consent + more
200K+ installs
#259
PO
Page Optimize
200K+ installs
#262
MalCare WordPress Security Plugin - Malware Scanner, Cleaner, Security Firewall
200K+ installs
#265
Frequently Asked Questions
Common questions about Safe SVG
Yes, this can be done using the svg_allowed_attributes and svg_allowed_tags filters. They take one argument that must be returned. See below for examples: 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; } );