Changeset 1968095
- Timestamp:
- 11/03/2018 02:02:35 AM (7 years ago)
- Location:
- lightweight-loading-bar/trunk
- Files:
-
- 2 edited
-
lw-loading-bar.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lightweight-loading-bar/trunk/lw-loading-bar.php
r1963091 r1968095 3 3 Plugin Name: Lightweight Loading Bar 4 4 Description: Add a YouTube-style loading bar to the top of your site. 5 Version: 1. 15 Version: 1.2 6 6 Author: Sospire Media 7 7 Author URI: https://sospire.media?utm_source=wordpress.org&utm_content=wordpresspluginlightweightloadingbar … … 22 22 You can change the position of the loading bar. 23 23 */ 24 25 // Do you want to enable the loading bar on the login page (true = yes, false = no). false by default. 26 $enable_on_login = 'false'; 24 27 25 28 // Do you want gradient (true = yes, false = no). false by default. … … 46 49 47 50 // Register complicated global vars without conflict 51 $lw_lb_enableonlogin = $enable_on_login; 48 52 $lw_lb_color = $color; 49 53 $lw_lb_height = $height; … … 79 83 add_action('wp_footer', 'lw_loading_bar_inject_element'); 80 84 85 global $lw_lb_enableonlogin; 86 87 if ($lw_lb_enableonlogin == 'true') { 88 add_action( 'login_footer', 'lw_loading_bar_inject_element' ); 89 } 90 81 91 ?> -
lightweight-loading-bar/trunk/readme.txt
r1963091 r1968095 4 4 Requires at least: 2.8.0 5 5 Tested up to: 4.9.8 6 Stable tag: 1. 16 Stable tag: 1.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 45 45 == Changelog == 46 46 47 = 1. 0=47 = 1.2 = 48 48 49 * Inital Release. 49 * Added option to enable loading bar on your login page. 50 * Added compatibility with upcoming new plugin Lightweight Login Page. 50 51 51 52 = 1.1 = 52 53 53 54 * Added option to set position of the loading bar (top or bottom). 55 56 = 1.0 = 57 58 * Inital Release.
Note: See TracChangeset
for help on using the changeset viewer.