PluginProbe ʕ •ᴥ•ʔ
LightStart – Maintenance Mode, Coming Soon and Landing Page Builder / 1.8.2
LightStart – Maintenance Mode, Coming Soon and Landing Page Builder v1.8.2
2.6.22 trunk 1.3 1.5.3 1.6.10 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.8.0 1.8.1 1.8.10 1.8.11 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.2 2.2.2 2.2.3 2.2.4 2.3.0 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.6.0 2.6.1 2.6.10 2.6.11 2.6.12 2.6.13 2.6.14 2.6.15 2.6.16 2.6.17 2.6.18 2.6.19 2.6.2 2.6.20 2.6.21 2.6.3 2.6.4 2.6.5 2.6.6 2.6.7 2.6.8 2.6.9
wp-maintenance-mode / readme.md
wp-maintenance-mode Last commit date
css 13 years ago inc 13 years ago js 13 years ago languages 13 years ago styles 13 years ago WP Maintenance Mode-da_DK.txt 13 years ago index.php 13 years ago license.txt 13 years ago readme.md 13 years ago readme.txt 13 years ago site.php 13 years ago uninstall.php 13 years ago wp-maintenance-mode.php 13 years ago
readme.md
70 lines
1 # WP Maintenance Mode
2
3 Adds a splash page to your site that lets visitors know your site is down for maintenance. Full access to the back- & front-end is optional. Works also with WordPress Multisite installs.
4
5 ## Description
6 Adds a maintenance-page to your blog that lets visitors know your blog is down for maintenancetime. User with rights for theme-options get full access to the blog including the frontend.
7 Activate the plugin and your blog is in maintenance-mode, works and see the frontend, only registered users with enough rights. You can use a date with a countdown for informations the visitors or set a value and unit for infomrations.
8 Also you can add urls for exlude of maintenance mode.
9
10 You can add your own html and stylesheet and add the url of this style to the options of the plugin. Write your style to this markup and upload to the webspace; after add the url include http:// to the settings of this plugin and change th theme to `"Own Theme"`:
11
12
13 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
14 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
15 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de" id="wartungsmodus" >
16
17 <head>
18 <title>Blogname - Maintenance Mode</title>
19 </head>
20
21 <body>
22
23 <div id="header">
24 <p>WP Dev</p>
25 </div>
26
27 <div id="content">
28
29 <h1>Maintenance Mode</h1>
30 <p>Sorry for the inconvenience.<br />Our website is currently undergoing scheduled maintenance.<br /><strong>Please try back in 231 weeks.</strong><br />Thank you for your understanding.</p>
31 <div class="admin"><a href="http://example.com/wp-admin/">Admin-Login</a></div>
32 </div>
33
34 <div id="footer">
35 <p><a href="http://bueltge.de/">Plugin by: <img src="http://bueltge.de/favicon.ico" alt="bueltge.de" width="16" height="16" /></a></p>
36 </div>
37
38 </body>
39 </html>
40
41
42 Also you can add content via hook:
43
44 * `wm_head` - hook inside the head of the maintenance mode site
45 * `wm_content` - hook over the content, after the div with id content
46 * `wm_footer` - hook inside the footer
47
48
49 **Example:**
50
51 function add_my_link() {
52 echo '<a href="http://mylink.com/">My Link</a>
53 }
54 add_action( 'wm_footer', 'add_my_link' );
55
56 ## Other Notes
57 ### License
58 Good news, this plugin is free for everyone! Since it's released under the GPL, you can use it free of charge on your personal or commercial blog. But if you enjoy this plugin, you can thank me and leave a [](http://bueltge.de/wunschliste/ "Wishliste and Donate"small donation](http://bueltge.de/wunschliste/ "Wishliste and Donate"](http://bueltge.de/wunschliste/ "Wishliste and Donate") for the time I've spent writing and supporting this plugin. And I really don't want to know how many hours of my life this plugin has already eaten ;)
59
60 ### Translations
61 The plugin comes with various translations, please refer to the [](http://codex.wordpress.org/Installing_WordPress_in_Your_Language "Installing WordPress in Your Language"WordPress Codex](http://codex.wordpress.org/Installing_WordPress_in_Your_Language "Installing WordPress in Your Language"](http://codex.wordpress.org/Installing_WordPress_in_Your_Language "Installing WordPress in Your Language") for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the .pot file which contains all defintions and may be used with a [](http://www.gnu.org/software/gettext/gettext](http://www.gnu.org/software/gettext/](http://www.gnu.org/software/gettext/) editor like [](http://www.poedit.net/Poedit](http://www.poedit.net/](http://www.poedit.net/) (Linux, Mac OS X, Windows).
62
63 ### Contact & Feedback
64 The plugin is designed and developed by me ([](http://bueltge.deFrank Bültge](http://bueltge.de](http://bueltge.de))
65
66 Please let me know if you like the plugin or you hate it or whatever ... Please fork it, add an issue for ideas and bugs.
67
68 ### Disclaimer
69 I'm German and my English might be gruesome here and there. So please be patient with me and let me know of typos or grammatical farts. Thanks
70