-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb-solution-logo-slider.php
More file actions
41 lines (36 loc) · 992 Bytes
/
Copy pathweb-solution-logo-slider.php
File metadata and controls
41 lines (36 loc) · 992 Bytes
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
37
38
39
40
<?php
/**
* Plugin Name: Web Solution Logo Slider
* Description: Lightweight logo slider with shortcode, live preview, per-device slides/gutter/height, arrows & autoplay.
* Version: 1.0.2
* Author: Web Solution Network
* Author URI: https://web-solution.gr
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: web-solution-logo-slider
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Plugin constants (single unified prefix).
*/
define( 'WSLS_PLUGIN_FILE', __FILE__ );
define( 'WSLS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'WSLS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'WSLS_PLUGIN_VER', '1.0.2' );
/**
* Core plugin class.
* NOTE: Rename the file/class to match:
* - includes/class-wsls.php
* - class WSLS
*/
require_once WSLS_PLUGIN_DIR . 'includes/class-wsls.php';
/**
* Bootstrap the plugin.
*/
function wsls_run_plugin() {
$plugin = new WSLS();
$plugin->run();
}
wsls_run_plugin();