Advanced Export: Export WordPress Site Data Including Widget, Customizer & Media Files
Advanced Export is a developer friendly WordPress plugin which gives flexibility to export site data in a zip format.
Next Milestone 400
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
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| customizer export | 88 | — | Tag | 20 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
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.1.0
- Last Updated
- Nov 12, 2024
- Requires WP
- 5.0+
- Tested Up To
- 6.7.4
- PHP Version
- 5.6.20 or higher
- Author
- AddonsPress
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about Advanced Export: Export WordPress Site Data Including Widget, Customizer & Media Files
function prefix_add_all_options(){
return true;
}
It is not recommended to use this hook unless you are migrating your site.
Some option table are not exported, what is happening?
You can include needed options by using advanced_export_include_options filter hook
add_action('advanced_export_include_options','prefix_include_my_options');
function prefix_include_my_options( $included_options ){
$my_options = array(
'blogname',
'blogdescription',
'posts_per_page',
'date_format',
'time_format',
'show_on_front',
'thumbnail_size_w',
'thumbnail_size_h',
'thumbnail_crop',
'medium_size_w',
'medium_size_h',
'medium_large_size_w',
'medium_large_size_h',
'avatar_default',
'large_size_w',
'large_size_h',
'page_for_posts',
'page_on_front',
'woocommerce_shop_page_id',
'woocommerce_cart_page_id',
'woocommerce_checkout_page_id',
'woocommerce_myaccount_page_id',
'page_on_front',
'show_on_front',
'page_for_posts',
);
return array_unique (array_merge( $included_options, $my_options));
}
advanced_export_capability
advanced_export_ignore_post_types
advanced_export_include_options
advanced_export_all_options
Here are some important list of action hooks:
advanced_export_before_create_data_files
advanced_export_form