The following describes how to modify the image before image load.
- Deploy a target image under your unveil-lazy-load directory in your server using FTP or FTPS.The directory may be <WordPress installed directory>/wp-content/plugins/unveil-lazy-load/
- Modify unveil-lazy-load.php in unveil-lazy-load directory through WordPress admin menu for plugin modification.
=== Replace content of $dummy_image as below ===
* The description before modification.
$dummy_image = 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==';
* The description after modification.
$dummy_image = self::get_url('<your target image>');
For example, if you upload an image named before.png as your target image before image load.The modification will be as follows.
$dummy_image = self::get_url('before.png');