Changeset 2763975
- Timestamp:
- 07/31/2022 05:19:35 AM (3 years ago)
- Location:
- lazyload-background-images
- Files:
-
- 52 added
- 1 deleted
- 4 edited
-
tags/1.0.0 (added)
-
tags/1.0.0/admin (added)
-
tags/1.0.0/admin/assets (added)
-
tags/1.0.0/admin/assets/css (added)
-
tags/1.0.0/admin/assets/css/pblzbg-admin-main.css (added)
-
tags/1.0.0/admin/assets/img (added)
-
tags/1.0.0/admin/assets/img/Proloy-bhaduri.png (added)
-
tags/1.0.0/admin/assets/js (added)
-
tags/1.0.0/admin/assets/js/pblzbg-admin-main.js (added)
-
tags/1.0.0/admin/core (added)
-
tags/1.0.0/admin/core/class-bg-image-processor.php (added)
-
tags/1.0.0/admin/index.php (added)
-
tags/1.0.0/admin/initialize.php (added)
-
tags/1.0.0/admin/plugin-functions.php (added)
-
tags/1.0.0/admin/templates (added)
-
tags/1.0.0/admin/templates/index.php (added)
-
tags/1.0.0/admin/templates/more.php (added)
-
tags/1.0.0/admin/templates/settings.php (added)
-
tags/1.0.0/inc (added)
-
tags/1.0.0/inc/html-modifier.php (added)
-
tags/1.0.0/inc/index.php (added)
-
tags/1.0.0/index.php (added)
-
tags/1.0.0/init.php (added)
-
tags/1.0.0/lazyload-bg.php (added)
-
tags/1.0.0/readme.txt (added)
-
tags/1.0.0/uninstall.php (added)
-
tags/1.0.1 (added)
-
tags/1.0.1/admin (added)
-
tags/1.0.1/admin/assets (added)
-
tags/1.0.1/admin/assets/css (added)
-
tags/1.0.1/admin/assets/css/pblzbg-admin-main.css (added)
-
tags/1.0.1/admin/assets/img (added)
-
tags/1.0.1/admin/assets/img/Proloy-bhaduri.png (added)
-
tags/1.0.1/admin/assets/js (added)
-
tags/1.0.1/admin/assets/js/pblzbg-admin-main.js (added)
-
tags/1.0.1/admin/core (added)
-
tags/1.0.1/admin/core/class-bg-image-processor.php (added)
-
tags/1.0.1/admin/index.php (added)
-
tags/1.0.1/admin/initialize.php (added)
-
tags/1.0.1/admin/plugin-functions.php (added)
-
tags/1.0.1/admin/templates (added)
-
tags/1.0.1/admin/templates/index.php (added)
-
tags/1.0.1/admin/templates/more.php (added)
-
tags/1.0.1/admin/templates/settings.php (added)
-
tags/1.0.1/inc (added)
-
tags/1.0.1/inc/html-modifier.php (added)
-
tags/1.0.1/inc/index.php (added)
-
tags/1.0.1/index.php (added)
-
tags/1.0.1/init.php (added)
-
tags/1.0.1/lazyload-bg.php (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/uninstall.php (added)
-
trunk/admin/core/class-buffer.php (deleted)
-
trunk/admin/plugin-functions.php (modified) (1 diff)
-
trunk/init.php (modified) (1 diff)
-
trunk/lazyload-bg.php (modified) (1 diff)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lazyload-background-images/trunk/admin/plugin-functions.php
r2763821 r2763975 8 8 { 9 9 $links = array( 10 'settings' => '<a href="' .esc_url( admin_url( 'options-general.php?page=lazyload-bg' ) ).'">Settings</a>',10 'settings' => '<a href="' . esc_url(admin_url('options-general.php?page=lazyload-bg')) . '">Settings</a>', 11 11 'support' => '<a style="color:green;" href="' . esc_url('https://buymeacoffee.com/proloybhaduri') . '" target="_blank">Buy Developer A Coffee</a>' 12 12 ); 13 13 $actions = array_merge($actions, $links); 14 14 return $actions; 15 } 16 17 if ( 18 !is_admin() 19 ) { 20 ob_start(function ($buffer) { 21 $buffer = apply_filters('pblzbg_buffer', $buffer); 22 return $buffer; 23 }); 15 24 } 16 25 -
lazyload-background-images/trunk/init.php
r2763821 r2763975 34 34 include_once(PBLZBG_PLUGIN_DIR . 'inc/html-modifier.php'); 35 35 } 36 require_once PBLZBG_PLUGIN_DIR . 'admin/core/class-buffer.php';37 36 require_once PBLZBG_PLUGIN_DIR . 'admin/core/class-bg-image-processor.php'; 38 37 require_once PBLZBG_PLUGIN_DIR . 'admin/plugin-functions.php'; -
lazyload-background-images/trunk/lazyload-bg.php
r2763821 r2763975 5 5 * Plugin Name: LazyLoad Background Images 6 6 * Description: Helps deferring offscreen background images and improves website speed by reducing HTTP requests 7 * Version: 1.0. 07 * Version: 1.0.1 8 8 * Requires at least: 5.2 9 9 * Requires PHP: 7.2 -
lazyload-background-images/trunk/readme.txt
r2763821 r2763975 6 6 Requires at least: 5.2 7 7 Tested up to: 6.0.1 8 Stable tag: 1.0. 08 Stable tag: 1.0.1 9 9 Requires PHP: 7.2 10 10 License: GPLv2 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html 12 12 13 This plugin lazyloads background images13 Helps deferring offscreen background images and improves website speed by reducing HTTP requests . 14 14 15 15 == Description == … … 21 21 1. Do not lazyload background images which are peresent above the fold because this will increase time to First Contentful Paint(FCP) metric and affect the speed of your website . 22 22 2. Background images that are added using inline CSS e.g, ` <p style=" background-image: url( path/to/background-img.jpg )" > </p> ` are lazyloaded by this plugin by default . 23 3. [WordPress Tips and Tricks By Proloy Bhaduri](https://proloybhaduri.com/ "WordPress Tips and Tricks by Proloy Bhaduri") 24 4. [Buy me a Coffee](https://www.buymeacoffee.com/proloybhaduri/ "Support Proloy Bhaduri") 23 3. No dependencies required for this plugin to work. 24 4. No extra HTTP request 25 5. Add the selectors of the elements that have background images in the plugin settings page or add `lazyloag-bg` class to the element . 26 6. [WordPress Tips and Tricks By Proloy Bhaduri](https://proloybhaduri.com/ "WordPress Tips and Tricks by Proloy Bhaduri") 27 7. [Buy me a Coffee](https://www.buymeacoffee.com/proloybhaduri/ "Support Proloy Bhaduri") 25 28 26 29 … … 29 32 This section describes the way you can install the plugin 30 33 31 * You can directly install the plugin from wordpress admin screen of your site **Plugin > Add New** and search For *Lazyload Background Images* .34 * You can directly install the plugin from wordpress admin screen of your site **Plugins > Add New** and search For *Lazyload Background Images* . 32 35 * Alternatively you can download the plugin file from the WordPress.org and upload to your site via **Plugins > Add New > Upload Plugin** 33 36 * Go to **Settings > Lazy Backgrounds** 34 37 35 == Changelog == 38 == Changelog == 39 40 = 1.0.1 = 41 42 * Updated readme.txt 36 43 37 44 = 1.0.0 = … … 42 49 == Upgrade Notice == 43 50 51 = 1.0.1 = 52 53 Upgrade the plugin to the latest 1.0.1 to get most of the fixes 54 44 55 = 1.0.0 = 45 56
Note: See TracChangeset
for help on using the changeset viewer.