Changeset 2213493
- Timestamp:
- 12/17/2019 09:40:46 AM (6 years ago)
- Location:
- wpsimpletools-maintenance-mode/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (4 diffs)
-
wpsimpletools-maintenance.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpsimpletools-maintenance-mode/trunk/readme.txt
r2211545 r2213493 1 === WpSimpleTools Maintenance Mode===1 === Maintenance Mode with 'coming soon' page or redirect === 2 2 Contributors: WpSimpleTools 3 3 Tags: maintenance mode, maintenance … … 6 6 Requires PHP: 5.0.0 7 7 Tested up to: 5.3 8 Stable tag: 1.1. 08 Stable tag: 1.1.2 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 19 19 == Upgrade Notice == 20 20 21 = 1.0.0 = 22 1.0.0 First release 23 24 = 1.0.1 = 25 1.0.1 Minor fixes 26 27 = 1.0.2 = 28 1.0.2 Minor fixes 29 30 = 1.0.3 = 31 1.0.3 Translation ready (email me to support!) 32 33 = 1.0.4 = 34 1.0.4 WP 5.2.3 supported 35 36 = 1.0.5 = 37 1.0.5 WP 5.3 supported 38 39 = 1.1.0 = 40 New settings page 21 = 1.1.2 = 22 Rebranding 41 23 42 24 == Frequently Asked Questions == … … 58 40 = 1.1.0 = 59 41 New settings page 42 = 1.1.2 = 43 Rebranding 60 44 61 45 == Screenshots == -
wpsimpletools-maintenance-mode/trunk/wpsimpletools-maintenance.php
r2211545 r2213493 6 6 * Author: WpSimpleTools 7 7 * Author URI: https://profiles.wordpress.org/wpsimpletools/#content-plugins 8 * Version: 1.1. 08 * Version: 1.1.2 9 9 * Plugin Slug: wpsimpletools-maintenance 10 10 * Text Domain: wpsimpletools-maintenance-mode … … 20 20 // } 21 21 // add_action('plugins_loaded', 'wpst_m_init'); 22 23 22 function wpst_m_process_redirect() { 24 23 … … 55 54 add_action('send_headers', 'wpst_m_process_redirect', 1); 56 55 57 function wpst_m_activation() {56 // function wpst_m_activation() { 58 57 59 }60 register_activation_hook(__FILE__, 'wpst_m_activation');58 // } 59 // register_activation_hook(__FILE__, 'wpst_m_activation'); 61 60 62 61 function wpst_m_deactivation() { … … 65 64 delete_option('maintenancePage'); 66 65 delete_option('url'); 66 delete_option('pageTitle'); 67 delete_option('pageText'); 67 68 } 68 69 register_deactivation_hook(__FILE__, 'wpst_m_deactivation');
Note: See TracChangeset
for help on using the changeset viewer.