PluginProbe ʕ •ᴥ•ʔ
WP STAGING – WordPress Backup, Restore, Migration & Clone / 4.9.2
WP STAGING – WordPress Backup, Restore, Migration & Clone v4.9.2
4.9.2 4.9.1 4.9.0 4.8.1 trunk 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.10.0 3.2.0 3.3.1 3.3.2 3.3.3 3.4.1 3.4.3 3.5.0 3.6.0 3.7.1 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4 4.0.0 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.2.0 4.2.1 4.3.0 4.3.1 4.3.2 4.4.0 4.5.0 4.6.0 4.7.0 4.7.1 4.7.2 4.7.3 4.8.0
wp-staging / views / staging / staging-site / index.php
wp-staging / views / staging / staging-site Last commit date
index.php 1 year ago
index.php
32 lines
1 <?php
2
3 /**
4 * This file is called on the staging site in
5 * @see src/views/clone/index.php
6 */
7
8 use WPStaging\Framework\Facades\Escape;
9
10 ?>
11
12 <div class="wpstg-notice--white">
13 <?php echo esc_html__("If you want to transfer this staging site to the production site,", "wp-staging") ?>
14 <br/>
15 <?php echo sprintf(
16 Escape::escapeHtml(__("<a href='%s' target='_new'>Open WP STAGING on Live Site</a> and start the push process from there.", 'wp-staging')),
17 esc_url((new WPStaging\Framework\Utils\Urls())->getProductionHostname() . '/wp-admin/admin.php?page=wpstg_clone')
18 ); ?>
19 <br/> <br/>
20 <div class="wpstg-enable-staging-site-clone">
21 <?php echo Escape::escapeHtml(__("If you want to clone this site, click on:", 'wp-staging')); ?>
22 <button id="wpstg-enable-staging-cloning" class="wpstg-button wpstg-blue-primary">
23 <?php echo esc_html__("Enable cloning of this site", "wp-staging") ?>
24 </button>
25 </div>
26 <br/> <br/>
27 <?php echo sprintf(
28 Escape::escapeHtml(__("<a href='%s' target='_new'>Read this article</a> if you would like to know more about cloning a staging site.", 'wp-staging')),
29 'https://wp-staging.com/docs/cloning-a-staging-site-testing-push-method/'
30 ); ?>
31 </div>
32