-
Notifications
You must be signed in to change notification settings - Fork 0
/
vralle-lqip.php
36 lines (32 loc) · 1.15 KB
/
vralle-lqip.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* The plugin bootstrap file
*
* @package vralle-lqip
*
* @wordpress-plugin
* Plugin Name: vralle.lqip
* Description: LQIP (Low Quality Image Placeholder) for vralle.lazyload. Fast and lightweight image previews.
* Version: 0.0.2
* Plugin URI: https://github.com/vralle/vralle-lqip
* Author: V.Ralle
* Author URI: https://github.com/vralle
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: vralle-lqip
* Domain Path: /languages
* Requires WP: 4.9
* Requires PHP: 5.6
* GitHub Plugin URI: https://github.com/vralle/vralle-lqip
**/
namespace VRalleLqip;
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
define( 'VRALLE_LQIP_META_PREFIX', 'gaussholder_' );
define( 'VRALLE_LQIP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
require VRALLE_LQIP_PLUGIN_DIR . 'includes/plugin-api.php';
require VRALLE_LQIP_PLUGIN_DIR . 'includes/generate-lqip.php';
require VRALLE_LQIP_PLUGIN_DIR . 'includes/image-header.php';
require VRALLE_LQIP_PLUGIN_DIR . 'includes/frontend.php';