W
by Matthew Boynes
4.9 (9 reviews)
WP Options Importer
Export and import WordPress Options.
Tested up to WP 6.1 (Current: 6.9.4)
v7
Current Version v7
Updated 3 years ago
Last Update on 03 Mar, 2023
Refreshed 6 hours ago
Last Refreshed on
Rank
#2,724
+5 this week
Active Installs
7K+
—
No change
KW Avg Position
111
-0.5 better
Downloads
102.8K
+6 today
Support Resolved
0%
—
No change
Rating
98%
Review 4.9 out of 5
4.9
(9 reviews)
Next Milestone 8K
7K+
8K+
111
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 494 more installs to reach 8K+
Rank Changes
Current
#2,724
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
9 reviews
Overall
98%
5
8
(89%)
4
1
(11%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2Unlock 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
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 7
- Last Updated
- Mar 03, 2023
- Requires WP
- 3.8+
- Tested Up To
- 6.1
- PHP Version
- N/A
- Author
- Matthew Boynes
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.9
- Reviews
- 9
- Support Threads
- 0
- Resolved
- 0%
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,714
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
InfiniteWP Client
200K+ installs
#253
Optimole – Optimize Images in Real Time
200K+ installs
#254
Firelight Lightbox
200K+ installs
#257
Frequently Asked Questions
Common questions about WP Options Importer
The default options are core options, or those which a plugin has indicated
manually select those which you need to import.
No, but you can! We provide a filter, options_import_allowlist for you to add your options to the default list. Here's an example one might add to their plugin: function my_awesome_plugin_options( $options ) { $options[] = 'my_awesome_plugin'; return $options; } add_filter( 'options_import_allowlist', 'my_awesome_plugin_options' ); Similarly, if you don't want someone to ever import an option, you can add it to the denylist using the options_import_denylist filter. As above, it would look something like this: function my_awesome_plugin_denylist_options( $options ) { $options[] = 'my_awesome_plugin_edit_lock'; return $options; } add_filter( 'options_import_denylist', 'my_awesome_plugin_denylist_options' );
You have two options for both exports and imports. Imports First, you can use the options_import_denylist filter and add any options to that array (which is empty by default). If your users have access to theme or plugin code, this isn't 100% safe, because they could override your denylist using the same filter. In those cases, there's an emergency ripcord where you can disable options from ever being imported. To use this, define the constant WP_OPTION_IMPORT_DENYLIST_REGEX (you'll probably want to do this in an mu-plugin) and set it to a regular expression. Anything matching this expression will be skipped. For example: define( 'WP_OPTION_IMPORT_DENYLIST_REGEX', '/^(home|siteurl)$/' ); Exports Exactly the same as with imports. The filter is options_export_denylist, and the constant is WP_OPTION_EXPORT_DENYLIST_REGEX.