by SKT Themes
1 (0 reviews)
SKT Themes Demo Import
Live demo content can be imported quickly in just one click including all widgets and settings.
Compatible with WP 6.9
vtrunk
Current Version vtrunk
Updated 6 days ago
Last Update on 15 Jan, 2026
Synced 10 hours ago
Last Synced on
Rank
#3,298
—
No change
Active Installs
5K+
—
No change
KW Avg Position
180
-1.5 better
Downloads
46.8K
+23 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 6K
5K+
6K+
179
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 593 more installs to reach 6K+
Rank Changes
Current
#3,298
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
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
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
- trunk
- Last Updated
- Jan 15, 2026
- Requires WP
- 0+
- Tested Up To
- 6.9
- PHP Version
- 5.6 or higher
- Author
- SKT Themes
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- 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,738
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#930
Qi Addons For Elementor
200K+ installs
#253
MW
MW WP Form
200K+ installs
#262
WPFront Scroll Top
200K+ installs
#270
Frequently Asked Questions
Common questions about SKT Themes Demo Import
In wp-admin -> Appearance -> Import Demo Content you will find the "import Demo Content" page.
To the default WordPress uploads directory, the demo import files will be saved. example is shown of that directory : ../wp-content/uploads/2016/03/. Even in the wp-admin -> Media section, the log file will be registered so that without any problem you can access it.
For theme author this question is actually classified. You just have to add below mentioned code structure to predefine demo imports, with your theme's value (with the help of skt-themes-demo-import/import_files filter): function SKT_import_files() { return array( array( 'import_file_name' => 'Demo Import 1', 'import_file_url' => 'http://www.your_domain.com/skt/demo-content.xml', 'import_widget_file_url' => 'http://www.your_domain.com/skt/widgets.json', 'import_customizer_file_url' => 'http://www.your_domain.com/skt/customizer.dat', 'import_preview_image_url' => 'http://www.your_domain.com/skt/preview_import_image1.jpg', 'import_notice' => __( 'After you import this demo, you will have to setup the slider separately.', 'your-textdomain' ), ), array( 'import_file_name' => 'Demo Import 2', 'import_file_url' => 'http://www.your_domain.com/skt/demo-content2.xml', 'import_widget_file_url' => 'http://www.your_domain.com/skt/widgets2.json', 'import_customizer_file_url' => 'http://www.your_domain.com/skt/customizer2.dat', 'import_preview_image_url' => 'http://www.your_domain.com/skt/preview_import_image2.jpg', 'import_notice' => __( 'A special note for this import.', 'your-textdomain' ), ), ); } add_filter( 'skt-themes-demo-import/import_files', 'SKT_import_files' ); You can set customizer import files, content import, and widgets. Also it is possible to justify the preview image, that can be used only if multiple demo imports are defined, by doing this the user will be able to check the difference between imports.
With the help of skt-themes-demo-import/after_import action hook you can do this. The code mentioned below that how it can appear like. function SKT_after_import_setup() { // Assign menus to their locations. $main_menu = get_term_by( 'name', 'Top Menu', 'nav_menu' ); set_theme_mod( 'nav_menu_locations', array( 'primary-menu' => $main_menu->term_id, ) ); // Assign front page and posts page (blog page). $front_page_id = get_page_by_title( 'Home' ); $blog_page_id = get_page_by_title( 'Blog' ); update_option( 'show_on_front', 'page' ); update_option( 'page_on_front', $front_page_id->ID ); update_option( 'page_for_posts', $blog_page_id->ID ); } add_action( 'skt-themes-demo-import/after_import', 'SKT_after_import_setup' );
The filter mentioned above example, you need to use same, but with some various array keys: local_*. The values have to be absolute paths (not URLs) to your import files. To use local import files, that reside in your theme folder, ensure that you are using the below code. Note: also ensure that the all import files are easy to read. function SKT_import_files() { return array( array( 'import_file_name' => 'Demo Import 1', 'local_import_file' => trailingslashit( get_template_directory() ) . 'skt/demo-content.xml', 'local_import_widget_file' => trailingslashit( get_template_directory() ) . 'skt/widgets.json', 'local_import_customizer_file' => trailingslashit( get_template_directory() ) . 'skt/customizer.dat', 'import_preview_image_url' => 'http://www.your_domain.com/skt/preview_import_image1.jpg', 'import_notice' => __( 'After you import this demo, you will have to setup the slider separately.', 'your-textdomain' ), ), array( 'import_file_name' => 'Demo Import 2', 'local_import_file' => trailingslashit( get_template_directory() ) . 'skt/demo-content2.xml', 'local_import_widget_file' => trailingslashit( get_template_directory() ) . 'skt/widgets2.json', 'local_import_customizer_file' => trailingslashit( get_template_directory() ) . 'skt/customizer2.dat', 'import_preview_image_url' => 'http://www.your_domain.com/skt/preview_import_image2.jpg', 'import_notice' => __( 'A special note for this import.', 'your-textdomain' ), ), ); } add_filter( 'skt-themes-demo-import/import_files', 'SKT_import_files' );
By a theme author this question might be arrised if they are looking to add various after import setups for various predefined demo imports. Consider that we have two demo imports predefined considering names: 'Demo Import 1' and 'Demo Import 2', now the after code import setup will be (using the skt-themes-demo-import/after_import filter): function SKT_after_import( $selected_import ) { echo "This will be displayed on all after imports!"; if ( 'Demo Import 1' === $selected_import['import_file_name'] ) { echo "This will be displayed only on after import if user selects Demo Import 1"; // Set logo in customizer set_theme_mod( 'logo_img', get_template_directory_uri() . '/assets/images/logo1.png' ); } elseif ( 'Demo Import 2' === $selected_import['import_file_name'] ) { echo "This will be displayed only on after import if user selects Demo Import 2"; // Set logo in customizer set_theme_mod( 'logo_img', get_template_directory_uri() . '/assets/images/logo2.png' ); } } add_action( 'skt-themes-demo-import/after_import', 'SKT_after_import' );
Yes it is possible to add same code before importing the widgets, use the skt-themes-demo-import/before_widgets_import action. Like in the example above, you can also target various predefined demo imports . Some example of the code is given below skt-themes-demo-import/before_widgets_import action: function SKT_before_widgets_import( $selected_import ) { echo "Add your code here that will be executed before the widgets get imported!"; } add_action( 'skt-themes-demo-import/before_widgets_import', 'SKT_before_widgets_import' );
The intro text of the plugin can be modified by using the skt-themes-demo-import/plugin_intro_text filter: function SKT_plugin_intro_text( $default_text ) { $default_text .= '<div class="SKT__intro-text">This is a custom text added to this plugin intro text.</div>'; return $default_text; } add_filter( 'skt-themes-demo-import/plugin_intro_text', 'SKT_plugin_intro_text' ); To add some text in a separate "box", you should wrap your text in a div with a class of 'SKT__intro-text', like in the code example above. The generation of smaller images (thumbnails), how it can be deactivated during the content import This will enhance the time required to import the content (images), but it will only import the original sized images. With a filter, you will be able to deactivate or disable it. You just need to add the following code to your theme function.php file: add_filter( 'skt-themes-demo-import/regenerate_thumbnails_in_content_import', '__return_false' );
As a author of a plugin you might not like the "Import Demo Content" plugin's location page in Appearance -> Import Demo Content? with the below filter you can change it easily. Along with the location you will also be able to modify the title or the page/menu and other parameters too. function SKT_plugin_page_setup( $default_settings ) { $default_settings['parent_slug'] = 'themes.php'; $default_settings['page_title'] = esc_html__( 'SKT Demo Import' , 'skt-themes-demo-import' ); $default_settings['menu_title'] = esc_html__( 'SKT Import Content' , 'skt-themes-demo-import' ); $default_settings['capability'] = 'import'; $default_settings['menu_slug'] = 'skt-themes-demo-import'; return $default_settings; } add_filter( 'skt-themes-demo-import/plugin_page_setup', 'SKT_plugin_page_setup' );
Update: Admin error notice will be shown, mentioning that the minimal PHP version 5.6 is required for this plugin. It might shows the below error when you try to update the plugin: Plugin could not be activated because it triggered a fatal error Because your hosting server is making a use of outdated PHP version, this type of problem may arrise. This plugin needs to be updated with the PHP version of at least 5.6.x, but we suggest to use version 5.6.x. You can connect with your hosting company and ask them to update the PHP version for your site.