partials
2 months ago
contact-us-basic.php
1 year ago
contact-us-pro.php
3 months ago
contact-us.php
1 year ago
darkmode-toggle-button.php
4 months ago
faq.php
3 months ago
footer.php
1 week ago
general-error-modal.php
1 year ago
header.php
3 months ago
main-navigation.php
1 year ago
newsfeed.php
3 months ago
main-navigation.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | use WPStaging\Core\WPStaging; |
| 4 | use WPStaging\Framework\Notices\BackupPluginsNotice; |
| 5 | |
| 6 | $licenseMessage = ''; |
| 7 | if (defined('WPSTGPRO_VERSION')) { |
| 8 | $licenseMessage = isset($license->license) && $license->license === 'valid' ? '' : __('(Unregistered)', 'wp-staging'); |
| 9 | } |
| 10 | |
| 11 | $backupNotice = WPStaging::make(BackupPluginsNotice::class); |
| 12 | $isCalledFromIndex = false; |
| 13 | $isBackupPage = false; |
| 14 | $isStagingPage = false; |
| 15 | require_once(WPSTG_VIEWS_DIR . 'navigation/web-template.php'); |
| 16 |