Use an existing site's content to populate a new site.
WP Site Cloner allows the copying of a site's content with just 1 function.
- Download and install using the built in WordPress plugin installer.
- Activate in the "Plugins" area of your admin by clicking the "Activate" link.
- No further setup or configuration is necessary.
Technically, that's the only thing that it does!
No. All of WordPress's core database tables remain untouched.
Probably something like:
wp_clone_site( array(
'domain' => 'src.wordpress-develop.dev',
'path' => '/paul/',
'title' => 'Paul the Dog',
'from_site_id' => 35,
'to_network_id' => 1,
'meta' => array(
'public' => 1
)
) );
If link_manager_enabled
is falsey on the source site, it will not get copied over to the new one.
The WordPress support forums: https://wordpress.org/tags/wp-site-cloner/
Yes, please!