_partials
1 day ago
setup
2 weeks ago
staging-site
1 year ago
wordpress-com
3 months ago
confirm-delete.php
2 weeks ago
free-version.php
1 day ago
index.php
4 months ago
listing.php
1 day ago
setup.php
1 day ago
staging-site-list-item.php
1 day ago
free-version.php
23 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 | use WPStaging\Framework\Language\Language; |
| 10 | |
| 11 | ?> |
| 12 | |
| 13 | <span class="wpstg-notice-alert"> |
| 14 | <?php echo sprintf( |
| 15 | Escape::escapeHtml(__('The free version of WP Staging does not support WordPress Multisite. You can consider upgrading to the <a href="%s" target="_blank">pro version</a> as needed.', 'wp-staging')), |
| 16 | esc_url(Language::getUpgradeUrl('staging_multisite')) |
| 17 | ); ?> |
| 18 | </span> |
| 19 | |
| 20 | <button class="wpstg-btn wpstg-btn-lg wpstg-btn-primary wpstg-new-staging-btn" disabled> |
| 21 | <?php esc_html_e('Create Staging Site', 'wp-staging'); ?> |
| 22 | </button> |
| 23 |